Files
Discord.Net/ref/Net/WebSocketException.cs
2016-02-24 19:36:18 -04:00

13 lines
239 B
C#

using System;
namespace Discord.Net
{
public class WebSocketException : Exception
{
public int Code { get; }
public string Reason { get; }
public WebSocketException(int code, string reason) { }
}
}