00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef GEOS_ALGORITHM_NOTREPRESENTABLEEXCEPTION_H
00017 #define GEOS_ALGORITHM_NOTREPRESENTABLEEXCEPTION_H
00018
00019 #include <geos/export.h>
00020 #include <string>
00021 #include <geos/util/GEOSException.h>
00022
00023 namespace geos {
00024 namespace algorithm {
00025
00035 class GEOS_DLL NotRepresentableException: public util::GEOSException {
00036 public:
00037 NotRepresentableException();
00038 NotRepresentableException(std::string msg);
00039 ~NotRepresentableException() throw() {}
00040 };
00041
00042 }
00043 }
00044
00045 #endif
00046