Go to the documentation of this file. 1 #ifndef WREPORT_ERROR_H
2 #define WREPORT_ERROR_H
56 #define WREPORT_THROWF_ATTRS(a, b) __attribute__ ((noreturn, format(printf, a, b)))
59 class error :
public std::exception
70 virtual const
char*
what() const noexcept = 0;
95 const char*
what() const noexcept
override {
return msg; }
99 template<ErrorCode ERROR_CODE>
111 const char*
what() const noexcept
override {
return msg.c_str(); }
120 using StringBase::StringBase;
133 using StringBase::StringBase;
147 using StringBase::StringBase;
157 using StringBase::StringBase;
194 using StringBase::StringBase;
204 using StringBase::StringBase;
243 using StringBase::StringBase;
253 using StringBase::StringBase;
error_system(const std::string &msg)
Create an exception taking further information from errno.
@ WR_ERR_NOTFOUND
Item not found.
Definition: error.h:25
virtual const char * what() const noexcept=0
Error message.
Base class for DB-All.e exceptions.
Definition: error.h:60
static const char * strerror(ErrorCode code)
String description for an error code.
static void throwf(int code, void *re, const char *fmt,...) WREPORT_THROWF_ATTRS(3
Throw the exception, building the message printf-style.
error_regexp(int code, void *re, const std::string &msg)
Report an error while handling regular expressions.
Definition: error.h:222
const char * what() const noexcept override
Throw the exception, building the message printf-style.
Definition: error.h:95
ErrorCode code() const noexcept override
Exception-specific error code.
Definition: error.h:92
ErrorCode code() const noexcept override
Exception-specific error code.
Definition: error.h:109
@ WR_ERR_WRITE
Write error.
Definition: error.h:43
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
Report an error when a consistency check failed.
Definition: error.h:192
For functions working with handles, reports a problem with handling handles, such as impossibility to...
Definition: error.h:145
@ WR_ERR_ODBC
ODBC error.
Definition: error.h:31
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
@ WR_ERR_SYSTEM
Error reported by the system.
Definition: error.h:37
@ WR_ERR_TYPE
Wrong variable type.
Definition: error.h:27
@ WR_ERR_CONSISTENCY
Consistency check failed.
Definition: error.h:39
Reports that a feature is still not implemented.
Definition: error.h:241
Reports that a search-like function could not find what was requested.
Definition: error.h:118
@ WR_ERR_PARSE
Parse error.
Definition: error.h:41
const char * msg
error message returned by what()
Definition: error.h:81
const char * what() const noexcept override
Error message.
Definition: error.h:111
StringBase(const std::string &msg) noexcept
Definition: error.h:107
For functions handling data with multiple types, reports a mismatch between the type requested and th...
Definition: error.h:131
Report an error when parsing informations.
Definition: error.h:202
@ WR_ERR_UNIMPLEMENTED
Feature not implemented.
Definition: error.h:47
ErrorCode
C-style error codes used by exceptions.
Definition: error.h:21
Reports that memory allocation has failed.
Definition: error.h:78
Report a system error message.
Definition: error.h:168
@ WR_ERR_REGEX
Regular expression error.
Definition: error.h:45
@ WR_ERR_NONE
No error.
Definition: error.h:23
error_system(const std::string &msg, int errno_val)
Create an exception taking further information from an explicit errno value.
virtual ErrorCode code() const noexcept=0
Exception-specific error code.
error_parse(const char *file, int line, const std::string &msg)
#define WREPORT_THROWF_ATTRS(a, b)
Tell the compiler that a function always throws and expects printf-style arguments.
Definition: error.h:56
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
error_alloc(const char *msg)
Definition: error.h:89
@ WR_ERR_TOOLONG
Buffer is too short to fit data.
Definition: error.h:35
@ WR_ERR_DOMAIN
Value outside acceptable domain.
Definition: error.h:49
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
Report that a parameter is outside the acceptable domain.
Definition: error.h:251
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.
String functions.
Definition: benchmark.h:13
@ WR_ERR_ALLOC
Cannot allocate memory.
Definition: error.h:29
std::string msg
error message returned by what()
Definition: error.h:104
static void throwf(const char *file, int line, const char *fmt,...) WREPORT_THROWF_ATTRS(3
Throw the exception, building the message printf-style.
@ WR_ERR_HANDLES
Handle management error.
Definition: error.h:33
static void throwf(const char *fmt,...) WREPORT_THROWF_ATTRS(1
Throw the exception, building the message printf-style.