C++ Utilities
4.17.0
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 () USE_NOTHROW | |
Constructs a new ConversionException. More... | |
ConversionException (const std::string &what) USE_NOTHROW | |
Constructs a new ConversionException. More... | |
ConversionException (const char *what) USE_NOTHROW | |
Constructs a new ConversionException. More... | |
~ConversionException () USE_NOTHROW | |
Destroys the ConversionException. More... | |
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.
ConversionUtilities::ConversionException::ConversionException | ( | ) |
Constructs a new ConversionException.
Definition at line 14 of file conversionexception.cpp.
ConversionUtilities::ConversionException::ConversionException | ( | const std::string & | what | ) |
Constructs a new ConversionException.
what is a std::string describing the cause of the ConversionException.
Definition at line 22 of file conversionexception.cpp.
|
inline |
Constructs a new ConversionException.
what is a C-style string describing the cause of the ConversionException.
Definition at line 23 of file conversionexception.h.
ConversionUtilities::ConversionException::~ConversionException | ( | ) |
Destroys the ConversionException.
Definition at line 29 of file conversionexception.cpp.