athena/include/IOException.hpp

15 lines
250 B
C++
Raw Normal View History

2013-01-26 20:19:24 +00:00
#ifndef __IOEXCEPTION_HPP__
#define __IOEXCEPTION_HPP__
#include "Exception.hpp"
class IOException : public Exception
{
public:
IOException(const std::string& message) :
Exception("IOException: " + message)
{};
};
#endif