source: binary-improvements/7dtd-server-fixes/src/JSON/MalformedJSONException.cs@ 346

Last change on this file since 346 was 325, checked in by alloc, 6 years ago

Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)

File size: 473 bytes
RevLine 
[188]1using System;
2using System.Runtime.Serialization;
3
[325]4namespace AllocsFixes.JSON {
5 public class MalformedJSONException : ApplicationException {
6 public MalformedJSONException () {
[188]7 }
8
[325]9 public MalformedJSONException (string message) : base (message) {
[188]10 }
11
[325]12 public MalformedJSONException (string message, Exception inner) : base (message, inner) {
[188]13 }
[325]14
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.