The base class for exceptions indicating errors only detectable at runtime.
More...
#include <error.h>
|
| RuntimeError (const std::string &msg_, const std::string &context_, const char *type_, const char *error_string_) |
| Constructor for use by constructors of derived classes. More...
|
|
| RuntimeError (const std::string &msg_, const std::string &context_, const char *type_, int errno_) |
| Constructor for use by constructors of derived classes. More...
|
|
|
const char * | get_type () const |
| The type of this error (e.g. "DocNotFoundError".) More...
|
|
const std::string & | get_msg () const |
| Message giving details of the error, intended for human consumption. More...
|
|
const std::string & | get_context () const |
| Optional context information. More...
|
|
const char * | get_error_string () const |
| Returns any system error string associated with this exception. More...
|
|
std::string | get_description () const |
| Return a string describing this object. More...
|
|
The base class for exceptions indicating errors only detectable at runtime.
A subclass of RuntimeError will be thrown if Xapian detects an error which is exception derived from RuntimeError is thrown when an error is caused by problems with the data or environment rather than a programming mistake.
Definition at line 176 of file error.h.
◆ RuntimeError() [1/2]
Xapian::RuntimeError::RuntimeError |
( |
const std::string & |
msg_, |
|
|
const std::string & |
context_, |
|
|
const char * |
type_, |
|
|
const char * |
error_string_ |
|
) |
| |
|
inlineprivate |
Constructor for use by constructors of derived classes.
Definition at line 181 of file error.h.
◆ RuntimeError() [2/2]
Xapian::RuntimeError::RuntimeError |
( |
const std::string & |
msg_, |
|
|
const std::string & |
context_, |
|
|
const char * |
type_, |
|
|
int |
errno_ |
|
) |
| |
|
inlineprivate |
Constructor for use by constructors of derived classes.
Definition at line 187 of file error.h.
The documentation for this class was generated from the following file: