CluE
1.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
clueexception.h
Go to the documentation of this file.
1
#ifndef CLUEEXCEPTION_H
2
#define CLUEEXCEPTION_H
3
4
#include <string>
5
6
namespace
CluE
7
{
16
struct
CluEException
17
{
18
CluEException
() :
19
identifier
(-1),
20
message
(
""
)
21
{};
22
CluEException
(
int
identifier
, std::string
message
) :
23
identifier(identifier),
24
message(message)
25
{};
26
virtual
~CluEException
() {};
27
28
int
identifier
;
29
std::string
message
;
30
};
31
}
32
33
#endif
CluE::CluEException
CluE related exceptions base class.
Definition:
clueexception.h:16
CluE::CluEException::~CluEException
virtual ~CluEException()
Definition:
clueexception.h:26
CluE::CluEException::CluEException
CluEException()
Definition:
clueexception.h:18
CluE::CluEException::CluEException
CluEException(int identifier, std::string message)
Definition:
clueexception.h:22
CluE::CluEException::identifier
int identifier
Definition:
clueexception.h:26
CluE::CluEException::message
std::string message
Definition:
clueexception.h:29
src
exception
clueexception.h
Generated on Wed May 7 2014 20:30:01 for CluE by
1.8.7