00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef GEOS_UTIL_ILLEGALSTATEEXCEPTION_H
00017 #define GEOS_UTIL_ILLEGALSTATEEXCEPTION_H
00018
00019 #include <geos/export.h>
00020 #include <string>
00021
00022 #include <geos/util/GEOSException.h>
00023
00024 namespace geos {
00025 namespace util {
00026
00028 class GEOS_DLL IllegalStateException: public GEOSException {
00029 public:
00030 IllegalStateException()
00031 :
00032 GEOSException("IllegalStateException", "")
00033 {}
00034
00035 IllegalStateException(const std::string& msg)
00036 :
00037 GEOSException("IllegalStateException", msg)
00038 {}
00039
00040 ~IllegalStateException() throw() {};
00041 };
00042
00043 }
00044 }
00045
00046
00047 #endif // GEOS_UTIL_ILLEGALSTATEEXCEPTION_H