The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
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 }
Represents the error occurred when compiled application has been executed.
string ErrorType
Gets the name for the error type.
Interfaz for the different error types.
Definition: IError.cs:23
ExecutionError(string executableFileName)
Constructor
string Description
Gets the description for the error type.