00001 #include "SIGEL_Simulation/SIG_DynaSystemWrongNumberException.h" 00002 00003 SIGEL_Simulation::SIG_DynaSystemWrongNumberException::SIG_DynaSystemWrongNumberException(QString fileName, 00004 int line, 00005 QString message) 00006 : SIGEL_Tools::SIG_Exception(fileName, line, message) 00007 { 00008 this->message = "DynaSystemWrongNumberException: " + this->message; 00009 }; 00010 00011 SIGEL_Simulation::SIG_DynaSystemWrongNumberException::SIG_DynaSystemWrongNumberException(QString fileName, 00012 int line, 00013 QString message, 00014 SIG_Exception const& prevException) 00015 : SIGEL_Tools::SIG_Exception(fileName, line, message, prevException) 00016 { 00017 this->message = "DynaSystemWrongNumberException: " + this->message; 00018 };