Changeset 648 for trunk/c++_tools/utility/Exception.h
- Timestamp:
- Sep 14, 2006, 5:04:17 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/utility/Exception.h
r570 r648 34 34 35 35 /// 36 /// @brief Class 36 /// @brief Class for IO errors 37 37 /// 38 38 class IO_error : public std::runtime_error 39 39 { 40 40 public: 41 /// 42 /// Default constructor 43 /// 41 44 IO_error(void) throw() : std::runtime_error("IO_error:") {} 45 46 /// 47 /// Constructor for exception with message 48 /// 42 49 IO_error(std::string message) throw() 43 50 : std::runtime_error("IO_error: " + message) {}
Note: See TracChangeset
for help on using the changeset viewer.