BadScript 2
Loading...
Searching...
No Matches
BadSourceReaderException.cs
Go to the documentation of this file.
2
3namespace BadScript2.Reader;
4
9{
15 public BadSourceReaderException(string message, BadSourcePosition position) : base(message, position) { }
16
17
24 public BadSourceReaderException(string message, BadSourcePosition position, Exception inner) : base(
25 message,
26 position,
27 inner
28 ) { }
29}
Base Class for all BadScript Parser Exceptions.
Describes a specific position inside a source file.
Gets Raised if the Reader encounters an Error.
BadSourceReaderException(string message, BadSourcePosition position)
Creates a new BadSourceReaderException.
BadSourceReaderException(string message, BadSourcePosition position, Exception inner)
Creates a new BadSourceReaderException.
Contains Shared Data Structures and Functionality.
Contains the Source Reader for the BadScript2 Language.