Exception thrown when accessing bad formated data. More...
#include <exception.hpp>
Public Member Functions | |
| bad_format (const std::string &msg) throw () | |
| Constructor. | |
Exception thrown when accessing bad formated data.
Definition at line 69 of file exception.hpp.
| claw::bad_format::bad_format | ( | const std::string & | msg | ) | throw () [inline] |
Constructor.
| msg | A short description of the problem. |
Definition at line 76 of file exception.hpp.
00077 : exception(msg) 00078 { }
1.6.1