The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
IError.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: IError.cs //
6 // Author: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7 // Description: //
8 // Interface for the different error types. //
9 // -------------------------------------------------------------------------- //
10 // Create date: 24-10-2006 //
11 // Modification date: 24-10-2006 //
13 
14 using System;
15 using System.Collections.Generic;
16 using System.Text;
17 
18 namespace ErrorManagement
19 {
23  public interface IError
24  {
28  string ErrorType { get; }
29 
33  string Description { get; }
34  }
35 }
string Description
Gets the description for the error type.
Definition: IError.cs:33
string ErrorType
Gets the name for the error type.
Definition: IError.cs:28
Interfaz for the different error types.
Definition: IError.cs:23