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
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
}
ErrorManagement.IError
Interfaz for the different error types.
Definition:
IError.cs:23
ErrorManagement.DispatcherError
Represents a error produced in a wrong invocation of the dispatchers
Definition:
DispatcherError.cs:21
ErrorManagement.DispatcherError.DispatcherError
DispatcherError(string description)
Definition:
DispatcherError.cs:29
Desktop
stadyn
Inference
src
ErrorManagement
DispatcherError.cs
Generated on Mon Oct 21 2013 16:10:25 for The StaDyn Programming Language by
1.8.5