Line | |
---|
1 | using System;
|
---|
2 | using System.Runtime.Serialization;
|
---|
3 |
|
---|
4 | namespace 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.