The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
CodeGenerationError.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: ClassTypeInfoError.cs //
6 // Author: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7 // Description: //
8 // Represents a error produced when a MethodType has class information and //
9 // tries to assign other class information. //
10 // -------------------------------------------------------------------------- //
11 // Create date: 21-11-2006 //
12 // Modification date: 14-02-2007 //
14 
15 using System;
16 using System.Collections.Generic;
17 using System.Text;
18 
19 namespace ErrorManagement {
25  #region Constructor
26 
32  public CodeGenerationError(string str) {
33  this.Description = str;
34 
35  #endregion
36  }
37  }
38 }
CodeGenerationError(string str)
Constructor of ClassTypeInfoError
Represents a error produced when a MethodType has class information and tries to assign other class i...
Represents an adapter of existing features in every error.
Definition: ErrorAdapter.cs:23