Last change
on this file since 417 was 351, checked in by alloc, 6 years ago |
Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)
|
File size:
483 bytes
|
Rev | Line | |
---|
[188] | 1 | using System;
|
---|
| 2 | using System.Runtime.Serialization;
|
---|
| 3 |
|
---|
[325] | 4 | namespace AllocsFixes.JSON {
|
---|
| 5 | public class MalformedJSONException : ApplicationException {
|
---|
| 6 | public MalformedJSONException () {
|
---|
[188] | 7 | }
|
---|
| 8 |
|
---|
[351] | 9 | public MalformedJSONException (string _message) : base (_message) {
|
---|
[188] | 10 | }
|
---|
| 11 |
|
---|
[351] | 12 | public MalformedJSONException (string _message, Exception _inner) : base (_message, _inner) {
|
---|
[188] | 13 | }
|
---|
[325] | 14 |
|
---|
[351] | 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.