2 #ifndef GACENEXCEPTION_H 3 #define GACENEXCEPTION_H 15 std::ostringstream oss;
16 oss <<
"Erreur ligne " << Line <<
" : " 18 this->msg = oss.str();
26 virtual const char *
what()
const throw()
28 return this->msg.c_str();
35 #endif // GACENEXCEPTION_H Definition: GacenException.h:10
virtual const char * what() const
Definition: GacenException.h:26
Definition: Controller.h:11
GacenException(const char *Msg, int Line)
Definition: GacenException.h:13
virtual ~GacenException()
Definition: GacenException.h:21