cool
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public class NetRemoteInternalException : System.Exception
|
||||
{
|
||||
public NetRemoteInternalException() : base("Remote internal error") { }
|
||||
public NetRemoteInternalException(string message) : base(message) { }
|
||||
public NetRemoteInternalException(string message, System.Exception innerException) : base(message, innerException) { }
|
||||
}
|
||||
public class NetOfflineException : System.Exception
|
||||
{
|
||||
public NetOfflineException() : base("Client is not connected") { }
|
||||
@@ -21,4 +27,6 @@ namespace BITKit
|
||||
{
|
||||
public NetServerOnlyException() : base("This method is only available on server") { }
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user