C++ Utilities 5.26.1
Useful C++ classes and routines such as argument parser, IO and conversion utilities
|
The ParseError class is thrown by an ArgumentParser when a parsing error occurs. More...
#include <parseerror.h>
Public Member Functions | |
ParseError () | |
Constructs a new ParseError. | |
ParseError (const std::string &what) | |
Constructs a new ParseError. | |
~ParseError () noexcept override | |
Destroys the ParseError. | |
The ParseError class is thrown by an ArgumentParser when a parsing error occurs.
Definition at line 11 of file parseerror.h.
|
inline |
Constructs a new ParseError.
Definition at line 21 of file parseerror.h.
|
inline |
Constructs a new ParseError.
what is a std::string describing the cause of the ParseError.
Definition at line 29 of file parseerror.h.
|
overridenoexcept |
Destroys the ParseError.
Definition at line 19 of file parseerror.cpp.