20 lines
419 B
C#
20 lines
419 B
C#
using System;
|
|
|
|
|
|
namespace UniJSON
|
|
{
|
|
public class JsonParseException : Exception
|
|
{
|
|
public JsonParseException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class JsonFormatException : ArgumentException
|
|
{
|
|
public JsonFormatException(string msg) : base(msg) { }
|
|
}
|
|
|
|
public class JsonValueException : Exception
|
|
{
|
|
public JsonValueException(string msg) : base(msg) { }
|
|
}
|
|
}
|