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
EntryPointNotFoundError.cs
Go to the documentation of this file.
1
// -------------------------------------------------------------------------- //
3
// Project rROTOR //
4
// -------------------------------------------------------------------------- //
5
// File: EntryPointNotFoundError.cs //
6
// Author: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7
// Description: //
8
// Represents a error produced when source code has not any entry point. //
9
// -------------------------------------------------------------------------- //
10
// Create date: 31-05-2007 //
11
// Modification date: 31-05-2007 //
13
14
using
System;
15
using
System.Collections.Generic;
16
using
System.Text;
17
18
namespace
ErrorManagement
19
{
23
public
class
EntryPointNotFoundError
:
ErrorAdapter
24
{
25
#region Constructor
26
30
public
EntryPointNotFoundError
()
31
{
32
StringBuilder
aux =
new
StringBuilder
();
33
aux.AppendFormat(
"The application does not contain a static 'Main' method suitable for an entry point"
);
34
this.Description = aux.ToString();
35
}
36
37
#endregion
38
}
39
}
ErrorManagement.EntryPointNotFoundError
Represents a error produced when source code has not any entry point.
Definition:
EntryPointNotFoundError.cs:23
StringBuilder
System.Text.StringBuilder StringBuilder
Definition:
CSharpParser.cs:4
ErrorManagement.EntryPointNotFoundError.EntryPointNotFoundError
EntryPointNotFoundError()
Constructor of EntryPointNotFoundError
Definition:
EntryPointNotFoundError.cs:30
ErrorManagement.ErrorAdapter
Represents an adapter of existing features in every error.
Definition:
ErrorAdapter.cs:23
Desktop
stadyn
Inference
src
ErrorManagement
EntryPointNotFoundError.cs
Generated on Mon Oct 21 2013 16:10:25 for The StaDyn Programming Language by
1.8.5