Canon/Canon.Core/Exceptions/GrammarException.cs
Lan_G e191c1e077 add: exceptions(#7)
Reviewed-on: PostGuard/Canon#7
Co-authored-by: Lan_G <2911328695@qq.com>
Co-committed-by: Lan_G <2911328695@qq.com>
2024-03-13 16:39:00 +08:00

13 lines
353 B
C#

namespace Canon.Core.Exceptions;
/// <summary>
/// 语法分析中引发的异常
/// </summary>
public class GrammarException : Exception
{
public GrammarException() { }
public GrammarException(string message) : base(message) { }
public GrammarException(string message, Exception innerException) : base(message, innerException) { }
}