BICO  1.0
 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 
14 {
16  InvalidArgumentException(int identifier, std::string message, std::string argument) :
17  argument(argument)
18  {
19  this->identifier = identifier;
20  this->message = message;
21  };
23 
24  std::string argument;
25 };
26 }
27 
28 #endif