示例#1
0
 public TwitchException(String message, Enums.TwitchExceptionType type, int id, Exception inner) : base(message, inner)
 {
     this.ErrorID   = id;
     this.ErrorType = type;
 }
示例#2
0
 public TwitchException(String message, Enums.TwitchExceptionType type, int id) : this(message, null)
 {
     this.ErrorID   = id;
     this.ErrorType = type;
 }