MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / system_call_failed

Class system_call_failed

src/include/fb_exception.h:150–160  ·  view source on GitHub ↗

use this class if exception can't be handled it will call abort() in DEV_BUILD to create core dump

Source from the content-addressed store, hash-verified

148// use this class if exception can't be handled
149// it will call abort() in DEV_BUILD to create core dump
150class system_call_failed : public system_error
151{
152protected:
153 system_call_failed(const char* syscall, const char* arg, int error_code);
154
155public:
156 static void raise(const char* syscall, int error_code);
157 static void raise(const char* syscall);
158 static void raise(const char* syscall, const char* arg, int error_code);
159 static void raise(const char* syscall, const char* arg);
160};
161
162class fatal_exception : public status_exception
163{

Callers 1

raiseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected