34 #ifndef INTERNAL_EXCEPTION_H 35 #define INTERNAL_EXCEPTION_H 50 class Full :
public std::exception
52 const char* what()
const throw()
override 54 return "This set is full...";
60 class Empty :
public std::exception
62 const char* what()
const throw()
override 64 return "This set is empty...";
72 const char* what()
const throw()
override 74 return "GeometryTypeId is not expected...";
82 const char* what()
const throw()
override 84 return "Geometry Type is unknown";
93 const char * what()
const throw()
override 95 return "No way to compute positions";
Thrown when something is added in a Full set.
Thrown when a geometry type is not like expected.
Thrown when a geometry type is not like expected.
Throw an exception when it's impossible to compute labelPOsition.
Thrown when trying to access an empty dada set.