BadScript 2
Loading...
Searching...
No Matches
BadScript2.Parser.BadParserException Class Reference

Gets Raised when a Parser Error occurs. More...

Inheritance diagram for BadScript2.Parser.BadParserException:
BadScript2.Common.BadParseException BadScript2.Common.BadScriptException

Public Member Functions

 BadParserException (string message, BadSourcePosition position)
 Constructor.
 
 BadParserException (string message, BadSourcePosition position, Exception inner)
 Constructor.
 

Additional Inherited Members

- Protected Member Functions inherited from BadScript2.Common.BadParseException
 BadParseException (string message, BadSourcePosition position)
 Constructor for the BadParseException.
 
 BadParseException (string message, BadSourcePosition position, Exception inner)
 Constructor for the BadParseException.
 
- Protected Member Functions inherited from BadScript2.Common.BadScriptException
 BadScriptException (string message)
 
 BadScriptException (string message, string originalMessage)
 
 BadScriptException (string message, string originalMessage, Exception inner)
 
 BadScriptException (string message, string originalMessage, BadSourcePosition position)
 
 BadScriptException (string message, string originalMessage, BadSourcePosition position, Exception inner)
 
- Properties inherited from BadScript2.Common.BadScriptException
string OriginalMessage [get]
 The Original Error Message.
 
BadSourcePositionPosition [get]
 The source position of where the error occurred.
 

Detailed Description

Gets Raised when a Parser Error occurs.

Definition at line 8 of file BadParserException.cs.

Constructor & Destructor Documentation

◆ BadParserException() [1/2]

BadScript2.Parser.BadParserException.BadParserException ( string  message,
BadSourcePosition  position 
)

Constructor.

Parameters
messageThe Exception Message
positionThe Source Position of the Exception

Definition at line 15 of file BadParserException.cs.

17 : base(message, position) { }

◆ BadParserException() [2/2]

BadScript2.Parser.BadParserException.BadParserException ( string  message,
BadSourcePosition  position,
Exception  inner 
)

Constructor.

Parameters
messageThe Exception Message
positionThe Source Position of the Exception
innerThe Inner Exception

Definition at line 25 of file BadParserException.cs.

28 :
29 base(message, position, inner) { }

The documentation for this class was generated from the following file: