public JsonException(JsonExceptionType jsonExceptionType, string message, Exception inner) : base(message, inner) { }
public JsonException(JsonExceptionType jsonExceptionType, string message) : base(message) { }
public JsonException(JsonExceptionType type, string msg, Exception exc) : base(msg, exc) { Type = type; }
public JsonException(JsonExceptionType exceptionType) { jsonExceptionType = exceptionType; }
public JsonException(JsonExceptionType type, string msg) : base(msg) { Type = type; }