athena/include/IOException.hpp
2013-01-26 12:19:24 -08:00

15 lines
250 B
C++

#ifndef __IOEXCEPTION_HPP__
#define __IOEXCEPTION_HPP__
#include "Exception.hpp"
class IOException : public Exception
{
public:
IOException(const std::string& message) :
Exception("IOException: " + message)
{};
};
#endif