You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
307 B
16 lines
307 B
namespace EC.Helper.RabbitFunc.Syntax;
|
|
|
|
internal class ErrorToken : Token
|
|
{
|
|
private string message;
|
|
|
|
public ErrorToken(string message)
|
|
: base(TokenKind.Error)
|
|
{
|
|
this.message = message;
|
|
}
|
|
|
|
public override string Text => message;
|
|
|
|
public string Message => message;
|
|
}
|