ScriptStack
1.0.4
Loading...
Searching...
No Matches
LexerException.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Text;
4
5
using
ScriptStack.Runtime
;
6
7
namespace
ScriptStack.Compiler
8
{
9
10
public
class
LexerException
:
ScriptStackException
11
{
12
13
#region Public Methods
14
15
public
LexerException
() : base()
16
{
17
}
18
19
public
LexerException
(
string
message) : base(
"LexerException: "
+ message)
20
{
21
}
22
23
public
LexerException
(
string
message, Exception innerException) : base(message, innerException)
24
{
25
}
26
27
public
LexerException
(
string
message,
int
line,
int
column,
string
text) : base(message +
" Zeile "
+ (line + 1) +
", Zeichen "
+ System.Math.Abs(column - 1) +
": "
+ text)
28
{
29
}
30
31
#endregion
32
33
}
34
35
}
ScriptStack.Compiler.LexerException.LexerException
LexerException(string message)
Definition
LexerException.cs:19
ScriptStack.Compiler.LexerException.LexerException
LexerException()
Definition
LexerException.cs:15
ScriptStack.Compiler.LexerException.LexerException
LexerException(string message, Exception innerException)
Definition
LexerException.cs:23
ScriptStack.Compiler.LexerException.LexerException
LexerException(string message, int line, int column, string text)
Definition
LexerException.cs:27
ScriptStack.Runtime.ScriptStackException.ScriptStackException
ScriptStackException()
Definition
ScriptStackException.cs:20
ScriptStack.Compiler
Definition
Derivation.cs:8
ScriptStack.Runtime
Definition
ArrayList.cs:7
Compiler
LexerException.cs
Generated by
1.15.0