1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #region Header
- /**
- * JsonException.cs
- * Base class throwed by LitJSON when a parsing error occurs.
- *
- * The authors disclaim copyright to this source code. For more details, see
- * the COPYING file included with this distribution.
- **/
- #endregion
- using System;
- namespace LitJson
- {
- public class JsonException :
- #if NETSTANDARD1_5
- Exception
- #else
- ApplicationException
- #endif
- {
- public JsonException () : base ()
- {
- }
- internal JsonException (ParserToken token) :
- base (String.Format (
- "Invalid token '{0}' in input string", token))
- {
- }
- internal JsonException (ParserToken token,
- Exception inner_exception) :
- base (String.Format (
- "Invalid token '{0}' in input string", token),
- inner_exception)
- {
- }
- internal JsonException (int c) :
- base (String.Format (
- "Invalid character '{0}' in input string", (char) c))
- {
- }
- internal JsonException (int c, Exception inner_exception) :
- base (String.Format (
- "Invalid character '{0}' in input string", (char) c),
- inner_exception)
- {
- }
- public JsonException (string message) : base (message)
- {
- }
- public JsonException (string message, Exception inner_exception) :
- base (message, inner_exception)
- {
- }
- }
- }
|