1 #ifndef CVD_EXCEPTIONS_H 2 #define CVD_EXCEPTIONS_H 15 struct All :
public std::runtime_error
17 using std::runtime_error::runtime_error;
19 : std::runtime_error(
"No exception message provided")
22 All(
const std::string& whatarg)
23 : std::runtime_error(whatarg)
Out of memory exception.
Definition: exceptions.h:30
All classes and functions are within the CVD namespace.
Definition: argb.h:6
Base class for all CVD exceptions.
Definition: exceptions.h:15