The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
DispatcherError.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: DispatcherError.cs //
6 // Author: Daniel Zapico Rodríguez //
7 // Description: //
8 // Represents a error produced in a wrong invocation of the dispatchers //
9 // -------------------------------------------------------------------------- //
10 // Create date: 24-01-2009 //
12 
13 using System;
14 using System.Collections.Generic;
15 using System.Text;
16 
17 namespace ErrorManagement {
21  public class DispatcherError : IError {
22 
23  #region Fields
24  string description;
25  #endregion
26  #region Constructor
27 
28 
29  public DispatcherError(string description) {
30  this.description = description;
31  }
32 
33  #endregion
34 
35  #region Miembros de IError
36 
37  string IError.ErrorType {
38  get { return "Dispatcher Error"; }
39  }
40 
41  string IError.Description {
42  get { return this.description;}
43  }
44 
45  #endregion
46  }
47 }
Interfaz for the different error types.
Definition: IError.cs:23
Represents a error produced in a wrong invocation of the dispatchers
DispatcherError(string description)