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