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

Last change on this file since 274 was 188, checked in by alloc, 10 years ago

fixes

File size: 489 bytes
Line 
1using System;
2using System.Runtime.Serialization;
3
4namespace AllocsFixes.JSON
5{
6 public class MalformedJSONException : ApplicationException
7 {
8 public MalformedJSONException ()
9 {
10 }
11
12 public MalformedJSONException (string message) : base(message)
13 {
14 }
15
16 public MalformedJSONException (string message, System.Exception inner) : base(message, inner)
17 {
18 }
19
20 protected MalformedJSONException (SerializationInfo info, StreamingContext context) : base(info, context)
21 {
22 }
23 }
24}
25
Note: See TracBrowser for help on using the repository browser.