23#ifndef VCL_EXCEPTIONS_MISC_H
24#define VCL_EXCEPTIONS_MISC_H
42 virtual const char* what()
const throw()
44 static std::string
error;
45 error = std::string(
"Wrong Size - ") + std::runtime_error::what();
60 virtual const char* what()
const throw()
62 static std::string
error;
63 error = std::string(
"No Intersection - ") + std::runtime_error::what();
Exception thrown when the intersection between two objects is empty.
Definition misc.h:56
A class representing a line segment in n-dimensional space. The class is parameterized by a PointConc...
Definition segment.h:43
Exception thrown when the size (generally of a container) is not the expected one.
Definition misc.h:38