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

/inkscape/src/2geom/
H A Dexception.h5 * There are two main exception classes: LogicalError and RangeError.
80 class RangeError : public Exception { class in namespace:Geom
82 RangeError(const char * message, const char *file, const int line) function in class:Geom::RangeError
85 #define THROW_RANGEERROR(message) throw(RangeError(message, __FILE__, __LINE__))
105 class NotInvertible : public RangeError {
108 : RangeError("Function does not have a unique inverse", file, line) {}
112 class InfiniteSolutions : public RangeError {
115 : RangeError("There are infinite solutions", file, line) {}
119 class ContinuityError : public RangeError {
122 : RangeError("No
[all...]

Completed in 20 milliseconds