The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
DynVarException.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 
5 namespace DynVarManagement
6 {
11  public class DynVarException : Exception {
12  public DynVarException(string msg)
13  : base( msg )
14  {
15  }
16  }
17 
22  public DynVarInfoNotFound(string msg)
23  : base( msg )
24  {
25  }
26  }
27 
32  public DynVarInfoSyntaxException(string msg) : base( msg )
33  {
34  }
35  }
36 
42  public DynVarNotFound(string msg)
43  : base( msg )
44  {
45  }
46  }
47 }
The parent class for all exceptions related to DynVars
When a dynVar, a block(DynVars object), class or namespace is not found in the associated info...
When the associated file is not found
When the XML syntax of the associated file is not valid.