The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
Main Page
Packages
Classes
Files
File List
File Members
EntryPointFoundError.cs
Go to the documentation of this file.
1
// -------------------------------------------------------------------------- //
3
// Project rROTOR //
4
// -------------------------------------------------------------------------- //
5
// File: EntryPointFoundError.cs //
6
// Author: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7
// Description: //
8
// Represents a error produced when source code has more the one entry //
9
// point defined. //
10
// -------------------------------------------------------------------------- //
11
// Create date: 31-05-2007 //
12
// Modification date: 31-05-2007 //
14
15
using
System;
16
using
System.Collections.Generic;
17
using
System.Text;
18
19
namespace
ErrorManagement
20
{
25
public
class
EntryPointFoundError
:
ErrorAdapter
26
{
27
#region Constructor
28
35
public
EntryPointFoundError
(
Location
loc)
36
: base(loc)
37
{
38
StringBuilder
aux =
new
StringBuilder
();
39
aux.AppendFormat(
"The application has more than one entry point defined."
);
40
this.Description = aux.ToString();
41
}
42
43
#endregion
44
}
45
}
ErrorManagement.Location
This class encapsulates a location in a specific file. Implements an Inmutable pattern. So it can be used in any context, that is his internal fields never change.
Definition:
Location.cs:24
ErrorManagement.EntryPointFoundError.EntryPointFoundError
EntryPointFoundError(Location loc)
Constructor of EntryPointFoundError
Definition:
EntryPointFoundError.cs:35
StringBuilder
System.Text.StringBuilder StringBuilder
Definition:
CSharpParser.cs:4
ErrorManagement.EntryPointFoundError
Represents a error produced when source code has more the one entry point defined.
Definition:
EntryPointFoundError.cs:25
ErrorManagement.ErrorAdapter
Represents an adapter of existing features in every error.
Definition:
ErrorAdapter.cs:23
Desktop
stadyn
Inference
src
ErrorManagement
EntryPointFoundError.cs
Generated on Mon Oct 21 2013 16:10:25 for The StaDyn Programming Language by
1.8.5