23#ifndef VCL_EXCEPTIONS_IO_H
24#define VCL_EXCEPTIONS_IO_H
43 virtual const char* what()
const throw()
45 static std::string
error;
47 std::string(
"Unknown File Format - ") + std::runtime_error::what();
62 virtual const char* what()
const throw()
64 static std::string
error;
65 error = std::string(
"Cannot Open File - ") + std::runtime_error::what();
80 virtual const char* what()
const throw()
82 static std::string
error;
83 error = std::string(
"Malformed File - ") + std::runtime_error::what();
Exception thrown when the file cannot be opened.
Definition io.h:58
A class representing a line segment in n-dimensional space. The class is parameterized by a PointConc...
Definition segment.h:43