ScriptStack 1.0.4
Loading...
Searching...
No Matches
ScriptStack.Compiler.LexerException Class Reference
Inheritance diagram for ScriptStack.Compiler.LexerException:
ScriptStack.Runtime.ScriptStackException

Public Member Functions

 LexerException ()
 LexerException (string message)
 LexerException (string message, Exception innerException)
 LexerException (string message, int line, int column, string text)
Public Member Functions inherited from ScriptStack.Runtime.ScriptStackException
 ScriptStackException ()
 ScriptStackException (string message)
 ScriptStackException (string message, Exception innerException)
override string ToString ()

Additional Inherited Members

Properties inherited from ScriptStack.Runtime.ScriptStackException
new string Message [get]
string MessageTrace [get]

Detailed Description

Definition at line 10 of file LexerException.cs.

Constructor & Destructor Documentation

◆ LexerException() [1/4]

ScriptStack.Compiler.LexerException.LexerException ( )

Definition at line 15 of file LexerException.cs.

15 : base()
16 {
17 }

◆ 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 )

Definition at line 23 of file LexerException.cs.

23 : base(message, innerException)
24 {
25 }

◆ 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: