BICO
1.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
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
src
exception
clueexception.h
Generated on Fri Aug 30 2013 15:51:29 for BICO by
1.8.4