Ignore:
Timestamp:
Aug 7, 2022, 3:02:24 PM (2 years ago)
Author:
alloc
Message:

Major refactoring/cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/7dtd-server-fixes/src/JSON/MalformedJSONException.cs

    r351 r391  
    33
    44namespace AllocsFixes.JSON {
    5         public class MalformedJSONException : ApplicationException {
    6                 public MalformedJSONException () {
     5        public class MalformedJsonException : ApplicationException {
     6                public MalformedJsonException () {
    77                }
    88
    9                 public MalformedJSONException (string _message) : base (_message) {
     9                public MalformedJsonException (string _message) : base (_message) {
    1010                }
    1111
    12                 public MalformedJSONException (string _message, Exception _inner) : base (_message, _inner) {
     12                public MalformedJsonException (string _message, Exception _inner) : base (_message, _inner) {
    1313                }
    1414
    15                 protected MalformedJSONException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) {
     15                protected MalformedJsonException (SerializationInfo _info, StreamingContext _context) : base (_info, _context) {
    1616                }
    1717        }
Note: See TracChangeset for help on using the changeset viewer.