From 2fcb4625389b1594bbefdbaf2e038b2cfffa8ead Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Tue, 30 May 2023 14:27:59 +0800 Subject: + json extends --- .../Standard Assets/LitJson/JsonException.cs | 65 ---------------------- 1 file changed, 65 deletions(-) delete mode 100644 WorldlineKeepers/Assets/Standard Assets/LitJson/JsonException.cs (limited to 'WorldlineKeepers/Assets/Standard Assets/LitJson/JsonException.cs') diff --git a/WorldlineKeepers/Assets/Standard Assets/LitJson/JsonException.cs b/WorldlineKeepers/Assets/Standard Assets/LitJson/JsonException.cs deleted file mode 100644 index 4efd890..0000000 --- a/WorldlineKeepers/Assets/Standard Assets/LitJson/JsonException.cs +++ /dev/null @@ -1,65 +0,0 @@ -#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) - { - } - } -} -- cgit v1.1-26-g67d0