Example #1
0
static VOID
error_exit(DWORD errcode)
{
	ex_handler(NULL);
    if (!SilentMode)
	SIprintf("\nERROR : The execution of this command failed. Please verify with your\n	Ingres System Administrator that the Ingres service\n	was started successfully. The operating system error was %d.\n", errcode);
}
Example #2
0
static PedExceptionOption
do_throw ()
{
	PedExceptionOption	ex_opt;

	ped_exception = 1;

	if (ex_fetch_count) {
		return PED_EXCEPTION_UNHANDLED;
	} else {
		ex_opt = ex_handler (ex);
		ped_exception_catch ();
		return ex_opt;
	}
}