Added NightAlert project for travel kit
This commit is contained in:
26
ThirdParty/SocketIoClientDotNet/Src/SocketIoClientDotNet.net45/Client/SocketIOException.cs
vendored
Normal file
26
ThirdParty/SocketIoClientDotNet/Src/SocketIoClientDotNet.net45/Client/SocketIOException.cs
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace Quobject.SocketIoClientDotNet.Client
|
||||
{
|
||||
public class SocketIOException : Exception
|
||||
{
|
||||
public string Transport;
|
||||
public object code;
|
||||
|
||||
public SocketIOException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
public SocketIOException(Exception cause)
|
||||
: base("", cause)
|
||||
{
|
||||
}
|
||||
|
||||
public SocketIOException(string message, Exception cause)
|
||||
: base(message, cause)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user