Volume Cartographer
2.28.0
vc
core
types
Exceptions.hpp
Go to the documentation of this file.
1
#pragma once
2
5
#include <stdexcept>
6
#include <string>
7
8
namespace
volcart
9
{
10
22
class
IOException
:
public
std::runtime_error
23
{
24
public
:
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
volcart::IOException
IO operation exception.
Definition:
Exceptions.hpp:23
volcart::IOException::IOException
IOException(const char *msg)
Definition:
Exceptions.hpp:27
volcart::IOException::IOException
IOException(const std::string &msg)
Definition:
Exceptions.hpp:30
volcart
Volume Cartographer library
Generated by
1.9.4