C++ Utilities 5.26.1
Useful C++ classes and routines such as argument parser, IO and conversion utilities
|
The ConversionException class is thrown by the various conversion functions of this library when a conversion error occurs. More...
#include <conversionexception.h>
Public Member Functions | |
ConversionException () noexcept | |
Constructs a new ConversionException. | |
ConversionException (const std::string &what) noexcept | |
Constructs a new ConversionException. | |
ConversionException (const char *what) noexcept | |
Constructs a new ConversionException. | |
~ConversionException () override | |
Destroys the ConversionException. | |
The ConversionException class is thrown by the various conversion functions of this library when a conversion error occurs.
Definition at line 11 of file conversionexception.h.
|
inlinenoexcept |
Constructs a new ConversionException.
Definition at line 28 of file conversionexception.h.
|
inlinenoexcept |
Constructs a new ConversionException.
what is a std::string describing the cause of the ConversionException.
Definition at line 37 of file conversionexception.h.
|
inlinenoexcept |
Constructs a new ConversionException.
what is a C-style string describing the cause of the ConversionException.
Definition at line 46 of file conversionexception.h.
|
override |
Destroys the ConversionException.
Definition at line 8 of file conversionexception.cpp.