The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
ArgumentOutOfRangeError.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: ArgumentOutOfRangeError.cs //
6 // Author: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7 // Description: //
8 // Represents the error occurred when the argument value is out of range. //
9 // -------------------------------------------------------------------------- //
10 // Create date: 23-01-2007 //
11 // Modification date: 23-01-2007 //
13 
14 using System;
15 using System.Collections.Generic;
16 using System.Text;
17 
18 namespace ErrorManagement
19 {
24  {
25  #region Constructor
26 
32  public ArgumentOutOfRangeError(int index, string path)
33  {
34  this.Description = "The argument " + index + " is out of range in " + path;
35  }
36 
37  #endregion
38  }
39 }
ArgumentOutOfRangeError(int index, string path)
Constructor of ArgumentOutOfRangeError
Represents the error occurred when the argument value is out of range.
Represents an adapter of existing features in every error.
Definition: ErrorAdapter.cs:23