The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
CommandLineArgumentsError.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: CommandLineArgumentsError.cs //
6 // Author: Cristina Gonzalez Mu�oz - cristi.gm@gmail.com //
7 // Description: //
8 // Represents the error occurred when the command line arguments specified //
9 // are incorrect. //
10 // -------------------------------------------------------------------------- //
11 // Create date: 15-12-2006 //
12 // Modification date: 18-12-2006 //
14 
15 using System;
16 using System.Collections.Generic;
17 using System.Text;
18 
19 namespace ErrorManagement
20 {
26  {
27  #region Properties
28 
32  public string ErrorType
33  {
34  get { return "Command line argument error."; }
35  }
36 
40  public string Description
41  {
42  get { return "The number of arguments is incorrect. Uso: .exe <dir/s o fich/s>"; }
43  }
44 
45  #endregion
46  }
47 }
Represents the error occurred when the command line arguments specified are incorrect.
Interfaz for the different error types.
Definition: IError.cs:23
string Description
Gets the error description