Searched defs:Exception (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/2geom/
H A Dexception.h53 class Exception : public std::exception { class in namespace:Geom
55 Exception(const char * message, const char *file, const int line) { function in class:Geom::Exception
61 virtual ~Exception() throw() {} // necessary to destroy the string object!!!
69 #define THROW_EXCEPTION(message) throw(Geom::Exception(message, __FILE__, __LINE__))
73 class LogicalError : public Exception {
76 : Exception(message, file, line) {}
80 class RangeError : public Exception {
83 : Exception(message, file, line) {}

Completed in 14 milliseconds