ScriptStack 1.0.4
Loading...
Searching...
No Matches
LexerException.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6
8{
9
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}
LexerException(string message, Exception innerException)
LexerException(string message, int line, int column, string text)