예제 #1
0
 public JsonException(JsonExceptionType jsonExceptionType, string message, Exception inner)
     : base(message, inner)
 {
 }
예제 #2
0
 public JsonException(JsonExceptionType jsonExceptionType, string message)
     : base(message)
 {
 }
예제 #3
0
 public JsonException(JsonExceptionType type, string msg, Exception exc) : base(msg, exc)
 {
     Type = type;
 }
예제 #4
0
 public JsonException(JsonExceptionType exceptionType)
 {
     jsonExceptionType = exceptionType;
 }
예제 #5
0
 public JsonException(JsonExceptionType type, string msg) : base(msg)
 {
     Type = type;
 }