IOException.h
00001 #ifndef gridripper_io_IOException_h
00002 #define gridripper_io_IOException_h
00003
00004 #include <gridripper/lang/Exception.h>
00005
00006 namespace gridripper { namespace io {
00007
00015 class IOException: public Exception
00016 {
00017 public:
00018 IOException(const IOException& other):
00019 Exception(other) { }
00020 IOException(const string& msg, const string& where):
00021 Exception(msg, where) { }
00022 IOException(const Exception& orig, const string& where):
00023 Exception(orig, where) { }
00024 IOException(const Exception& orig, const string& msg,
00025 const string& where):
00026 Exception(orig, msg, where) { }
00027 };
00028
00029 } }
00030
00031 #endif