Definition at line 10 of file LexerException.cs.
◆ LexerException() [1/4]
| ScriptStack.Compiler.LexerException.LexerException |
( |
| ) |
|
◆ LexerException() [2/4]
| ScriptStack.Compiler.LexerException.LexerException |
( |
string | message | ) |
|
Definition at line 19 of file LexerException.cs.
19 : base("LexerException: " + message)
20 {
21 }
◆ LexerException() [3/4]
| ScriptStack.Compiler.LexerException.LexerException |
( |
string | message, |
|
|
Exception | innerException ) |
◆ LexerException() [4/4]
| ScriptStack.Compiler.LexerException.LexerException |
( |
string | message, |
|
|
int | line, |
|
|
int | column, |
|
|
string | text ) |
Definition at line 27 of file LexerException.cs.
27 : base(message + " Zeile " + (line + 1) + ", Zeichen " + System.Math.Abs(column - 1) + ": " + text)
28 {
29 }
The documentation for this class was generated from the following file: