BICO
1.0
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Pages
invalidargumentexception.h
Go to the documentation of this file.
1
#ifndef INVALIDARGUMENTESCEPTION_H
2
#define INVALIDARGUMENTESCEPTION_H
3
4
#include "../exception/clueexception.h"
5
6
namespace
CluE
7
{
8
13
struct
InvalidArgumentException
:
public
CluEException
14
{
15
InvalidArgumentException
() {};
16
InvalidArgumentException
(
int
identifier
, std::string
message
, std::string
argument
) :
17
argument(argument)
18
{
19
this->identifier =
identifier
;
20
this->message =
message
;
21
};
22
virtual
~InvalidArgumentException
() {};
23
24
std::string
argument
;
25
};
26
}
27
28
#endif
src
exception
invalidargumentexception.h
Generated on Fri Aug 30 2013 15:51:29 for BICO by
1.8.4