00001 00007 #include "IsoBomb.h" 00008 00009 #ifndef ISOEXCEPTION_H_DFWER234 00010 #define ISOEXCEPTION_H_DFWER234 00011 00015 class IsoException { 00016 public: 00020 IsoException(); 00021 00025 explicit IsoException( const std::string& msg ); 00026 00031 void showMessageBox() const; 00032 00036 const std::string& getMessage() const; 00037 00038 private: 00039 std::string msg; 00040 }; 00041 00042 #endif //#ifdef ISOEXCEPTION_H_DFWER234