23#ifndef VCL_IO_EXCEPTIONS_H
24#define VCL_IO_EXCEPTIONS_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();
A class representing a box in N-dimensional space.
Definition box.h:46
Exception thrown when the file cannot be opened.
Definition exceptions.h:58