Paradox Game Engine
v1.0.0 beta06
Main Page
Related Pages
Packages
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Macros
Pages
RuntimeException.cs
Go to the documentation of this file.
1
#region License
2
/* **********************************************************************************
3
* Copyright (c) Roman Ivantsov
4
* This source code is subject to terms and conditions of the MIT License
5
* for Irony. A copy of the license can be found in the License.txt file
6
* at the root of this distribution.
7
* By using this source code in any fashion, you are agreeing to be bound by the terms of the
8
* MIT License.
9
* You must not remove this notice from this software.
10
* **********************************************************************************/
11
#endregion
12
13
using
System
;
14
using
System.Collections.Generic;
15
using
System.Linq;
16
using
System.Text;
17
using
Irony.Parsing;
18
19
namespace
Irony.Interpreter {
20
public
class
RuntimeException
:
Exception
{
21
public
SourceLocation
Location
;
22
public
RuntimeException
(
string
message) : base(message) { }
23
public
RuntimeException
(
string
message,
Exception
inner) : base(message, inner) { }
24
public
RuntimeException
(
string
message,
Exception
inner,
SourceLocation
location) : base(message, inner) {
25
Location = location;
26
}
27
28
}
29
}
Exception
Irony.Interpreter.RuntimeException
Definition:
RuntimeException.cs:20
SiliconStudio.Shaders.Parser.System
A system file.
Irony.Parsing.SourceLocation
Definition:
SourceLocation.cs:20
Irony.Interpreter.RuntimeException.RuntimeException
RuntimeException(string message, Exception inner)
Definition:
RuntimeException.cs:23
Irony.Interpreter.RuntimeException.RuntimeException
RuntimeException(string message)
Definition:
RuntimeException.cs:22
Irony.Interpreter.RuntimeException.RuntimeException
RuntimeException(string message, Exception inner, SourceLocation location)
Definition:
RuntimeException.cs:24
Irony.Interpreter.RuntimeException.Location
SourceLocation Location
Definition:
RuntimeException.cs:21
sources
common
shaders
Irony
Interpreter
RuntimeException.cs
Generated on Sat Dec 20 2014 21:51:21 for Paradox Game Engine by
1.8.7