2024-03-16 11:05:38 +08:00
|
|
|
namespace Canon.Core.Exceptions;
|
2024-03-13 16:39:00 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 语法分析中引发的异常
|
|
|
|
/// </summary>
|
|
|
|
public class GrammarException : Exception
|
|
|
|
{
|
|
|
|
public GrammarException() { }
|
|
|
|
|
|
|
|
public GrammarException(string message) : base(message) { }
|
|
|
|
|
|
|
|
public GrammarException(string message, Exception innerException) : base(message, innerException) { }
|
|
|
|
}
|