Helios++
Helios software for LiDAR simulations
FluxionumException.h
1
#pragma once
2
3
#include <string>
4
#include <stdexcept>
5
6
namespace
fluxionum {
7
8
using
std::runtime_error;
9
16
class
FluxionumException
:
public
runtime_error{
17
public
:
18
// *** CONSTRUCTION / DESTRUCTION *** //
19
// ************************************ //
24
FluxionumException
(std::string
const
msg =
""
) : runtime_error(msg) {}
25
virtual
~
FluxionumException
() =
default
;
26
};
27
28
}
fluxionum::FluxionumException
Base class for fluxionum exceptions.
Definition:
FluxionumException.h:16
fluxionum::FluxionumException::FluxionumException
FluxionumException(std::string const msg="")
Fluxionum exception constructor.
Definition:
FluxionumException.h:24
src
maths
fluxionum
FluxionumException.h
Generated by
1.9.1