- Timestamp:
- Aug 7, 2022, 3:02:24 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/7dtd-server-fixes/src/JSON/MalformedJSONException.cs
r351 r391 3 3 4 4 namespace AllocsFixes.JSON { 5 public class MalformedJ SONException : ApplicationException {6 public MalformedJ SONException () {5 public class MalformedJsonException : ApplicationException { 6 public MalformedJsonException () { 7 7 } 8 8 9 public MalformedJ SONException (string _message) : base (_message) {9 public MalformedJsonException (string _message) : base (_message) { 10 10 } 11 11 12 public MalformedJ SONException (string _message, Exception _inner) : base (_message, _inner) {12 public MalformedJsonException (string _message, Exception _inner) : base (_message, _inner) { 13 13 } 14 14 15 protected MalformedJ SONException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) {15 protected MalformedJsonException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) { 16 16 } 17 17 }
Note:
See TracChangeset
for help on using the changeset viewer.