Volume Cartographer 2.28.0
Exceptions.hpp
Go to the documentation of this file.
1#pragma once
2
5#include <stdexcept>
6#include <string>
7
8namespace volcart
9{
10
22class IOException : public std::runtime_error
23{
24public:
27 explicit IOException(const char* msg) : std::runtime_error(msg) {}
28
30 explicit IOException(const std::string& msg) : std::runtime_error(msg) {}
32};
33} // namespace volcart
IO operation exception.
Definition: Exceptions.hpp:23
IOException(const char *msg)
Definition: Exceptions.hpp:27
IOException(const std::string &msg)
Definition: Exceptions.hpp:30
Volume Cartographer library