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

Method raiseFmt

src/common/fb_exception.cpp:299–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297}
298
299void fatal_exception::raiseFmt(const char* format, ...)
300{
301 va_list args;
302 va_start(args, format);
303 char buffer[1024];
304 VSNPRINTF(buffer, sizeof(buffer), format, args);
305 buffer[sizeof(buffer) - 1] = 0;
306 va_end(args);
307 throw fatal_exception(buffer);
308}
309
310} // namespace Firebird

Callers

nothing calls this directly

Calls 1

fatal_exceptionClass · 0.85

Tested by

no test coverage detected