|
Last change
on this file since 343 was 325, checked in by alloc, 7 years ago |
|
Code style cleanup (mostly whitespace changes, enforcing braces, using cleanup)
|
|
File size:
473 bytes
|
| 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.