* Added a catch for RemotingErrors on the TCP init

afrisby
Teravus Ovares 2007-12-31 01:57:14 +00:00
parent 508048f3c4
commit b0a6299937
1 changed files with 4 additions and 0 deletions

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;
}