The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
Main Page
Packages
Classes
Files
File List
File Members
ExecutionError.cs
Go to the documentation of this file.
1
// --------------------------------------------------------------------------
3
// Project rROTOR
4
// --------------------------------------------------------------------------
5
// File: ExecutionError.cs
6
// Author: Francisco Ortin - francisco.ortin@gmail.com
7
// Description:
8
// Represents the error occurred when compiled application has been
9
// executed.
10
// --------------------------------------------------------------------------
11
// Create date: 22-08-2007
12
// Modification date: 22-08-2007
14
15
using
System;
16
using
System.Collections.Generic;
17
using
System.Text;
18
19
namespace
ErrorManagement {
23
public
class
ExecutionError
:
IError
{
24
28
private
string
description;
29
33
public
string
ErrorType
{
get
{
return
"Execution Error"
; } }
34
38
public
string
Description
{
get
{
return
description; } }
39
40
#region Constructor
41
public
ExecutionError
(
string
executableFileName) {
46
this.description =
"Some error detected while executing the \""
+ executableFileName +
"\" file."
;
47
}
48
#endregion
49
}
50
}
ErrorManagement.ExecutionError
Represents the error occurred when compiled application has been executed.
Definition:
ExecutionError.cs:23
ErrorManagement.ExecutionError.ErrorType
string ErrorType
Gets the name for the error type.
Definition:
ExecutionError.cs:33
ErrorManagement.IError
Interfaz for the different error types.
Definition:
IError.cs:23
ErrorManagement.ExecutionError.ExecutionError
ExecutionError(string executableFileName)
Constructor
Definition:
ExecutionError.cs:45
ErrorManagement.ExecutionError.Description
string Description
Gets the description for the error type.
Definition:
ExecutionError.cs:38
Desktop
stadyn
Inference
src
ErrorManagement
ExecutionError.cs
Generated on Mon Oct 21 2013 16:10:25 for The StaDyn Programming Language by
1.8.5