- Timestamp:
- Sep 4, 2018, 1:00:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/JSON/MalformedJSONException.cs
r188 r325 2 2 using System.Runtime.Serialization; 3 3 4 namespace AllocsFixes.JSON 5 { 6 public class MalformedJSONException : ApplicationException 7 { 8 public MalformedJSONException () 9 { 4 namespace AllocsFixes.JSON { 5 public class MalformedJSONException : ApplicationException { 6 public MalformedJSONException () { 10 7 } 11 8 12 public MalformedJSONException (string message) : base(message) 13 { 9 public MalformedJSONException (string message) : base (message) { 14 10 } 15 11 16 public MalformedJSONException (string message, System.Exception inner) : base(message, inner) 17 { 12 public MalformedJSONException (string message, Exception inner) : base (message, inner) { 18 13 } 19 20 protected MalformedJSONException (SerializationInfo info, StreamingContext context) : base(info, context) 21 { 14 15 protected MalformedJSONException (SerializationInfo info, StreamingContext context) : base (info, context) { 22 16 } 23 17 } 24 18 } 25
Note:
See TracChangeset
for help on using the changeset viewer.