source: binary-improvements2/7dtd-server-fixes/src/JSON/MalformedJSONException.cs@ 391

Last change on this file since 391 was 391, checked in by alloc, 2 years ago

Major refactoring/cleanup

File size: 483 bytes
RevLine 
[188]1using System;
2using System.Runtime.Serialization;
3
[325]4namespace AllocsFixes.JSON {
[391]5 public class MalformedJsonException : ApplicationException {
6 public MalformedJsonException () {
[188]7 }
8
[391]9 public MalformedJsonException (string _message) : base (_message) {
[188]10 }
11
[391]12 public MalformedJsonException (string _message, Exception _inner) : base (_message, _inner) {
[188]13 }
[325]14
[391]15 protected MalformedJsonException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) {
[188]16 }
17 }
[325]18}
Note: See TracBrowser for help on using the repository browser.