* Creates a new exception. * @param msg Exception message. */
| 27 | * @param msg Exception message. |
| 28 | */ |
| 29 | Exception::Exception(const std::string &msg) throw(): _msg(msg) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | Exception::~Exception() throw() |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected