- Timestamp:
- Jan 19, 2019, 6:12:21 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/JSON/MalformedJSONException.cs
r325 r351 7 7 } 8 8 9 public MalformedJSONException (string message) : base (message) {9 public MalformedJSONException (string _message) : base (_message) { 10 10 } 11 11 12 public MalformedJSONException (string message, Exception inner) : base (message,inner) {12 public MalformedJSONException (string _message, Exception _inner) : base (_message, _inner) { 13 13 } 14 14 15 protected MalformedJSONException (SerializationInfo info, StreamingContext context) : base (info,context) {15 protected MalformedJSONException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) { 16 16 } 17 17 }
Note:
See TracChangeset
for help on using the changeset viewer.