* Added a catch for RemotingErrors on the TCP init

This commit is contained in:
Teravus Ovares
2007-12-31 01:57:14 +00:00
parent 508048f3c4
commit b0a6299937

View File

@@ -47,6 +47,10 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer
{
System.Console.WriteLine("Error: unable to connect to server");
}
catch (System.Runtime.Remoting.RemotingException)
{
System.Console.WriteLine("Error: unable to connect to server");
}
return null;
}