16 lines
319 B
C#
16 lines
319 B
C#
|
namespace CanonSharp.Combinator;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 解析过程中的异常
|
||
|
/// </summary>
|
||
|
public class ParseException : Exception
|
||
|
{
|
||
|
public ParseException(string message) : base(message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public ParseException(string message, Exception innerException) : base(message, innerException)
|
||
|
{
|
||
|
}
|
||
|
}
|