mirror of
https://github.com/libAthena/athena.git
synced 2025-06-09 08:03:35 +00:00
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
|