mirror of https://github.com/libAthena/athena.git
15 lines
250 B
C++
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
|