Canon/Canon.Core/Exceptions/GrammarException.cs
Lan_G ccd1899739 feat: symbol-table & type checker (#14)
Reviewed-on: PostGuard/Canon#14
Co-authored-by: Lan_G <2911328695@qq.com>
Co-committed-by: Lan_G <2911328695@qq.com>
2024-03-16 11:05:38 +08:00

13 lines
350 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) { }
}