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