Kea 2.7.5
|
An exception that is thrown if an error occurs while configuring any server. More...
#include <dhcp_config_error.h>
Public Member Functions | |
ConfigError (const char *file, size_t line, const char *what) | |
constructor | |
Public Member Functions inherited from isc::Exception | |
virtual const char * | what () const throw () |
Returns a C-style character string of the cause of the exception. | |
virtual const char * | what (bool verbose) const throw () |
Returns a C-style character string of the cause of exception. | |
const std::string & | getMessage () const |
Gets a string describing the cause of the exception. | |
const char * | getFile () const |
Gets the file name where the exception was thrown. | |
size_t | getLine () const |
Gets the line number of the file where the exception was thrown. | |
Exception (const char *file, size_t line, const char *what) | |
Constructor for a given type for exceptions with file name and file line number. | |
Exception (const char *file, size_t line, const std::string &what) | |
Constructor for a given type for exceptions with file name and file line number. | |
virtual | ~Exception () throw () |
The destructor. | |
An exception that is thrown if an error occurs while configuring any server.
By convention when this exception is thrown there is a position between parentheses so the code style should be like this:
try { ... } catch (const ConfigError&) { throw; } catch (const std::exception& ex) { isc_throw(ConfigError, "message" << ex.what() << " (" << getPosition(what) << ")"); }
: move this header into simple_parser.h
: create an isc_throw like macro to add the position more easily.
: replace all references to DhcpConfigError with ConfigError, then remove DhcpConfigError.
Definition at line 43 of file dhcp_config_error.h.
|
inline |
constructor
file | name of the file, where exception occurred |
line | line of the file, where exception occurred |
what | text description of the issue that caused exception |
Definition at line 51 of file dhcp_config_error.h.