comparison Exception/IOException.hpp @ 73:c9447697609f

Fixed some issues with raise. 100% function code coverage for Exceptions.
author Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no>
date Thu, 31 Jan 2013 20:33:01 +0100
parents b2c2c2bf2bbd
children
comparison
equal deleted inserted replaced
72:b4185273c14a 73:c9447697609f
4 #include "Exception.hpp" 4 #include "Exception.hpp"
5 5
6 class IOException : public Exception { 6 class IOException : public Exception {
7 public: 7 public:
8 IOException(const string_t& errMsg); 8 IOException(const string_t& errMsg);
9 virtual void raise() const NORETURN;
9 }; 10 };
10 11
11 #endif //IOEXCEPTION_HPP 12 #endif //IOEXCEPTION_HPP