1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/*
* This was the cpl_exceptions.i code. But since Java (and python...) is the only one
* different (should support old method as well as new one)
* it was moved into this file.
*/
%{
static int bUseExceptions=1;
void CPL_STDCALL
VeryQuietErrorHandler(CPLErr eclass, int code, const char *msg )
{
/* If the error class is CE_Fatal, we want to have a message issued
because the CPL support code does an abort() before any exception
can be generated */
if (eclass == CE_Fatal ) {
CPLDefaultErrorHandler(eclass, code, msg );
}
}
%}
%inline %{
void UseExceptions() {
bUseExceptions = 1;
CPLSetErrorHandler( (CPLErrorHandler) VeryQuietErrorHandler );
}
void DontUseExceptions() {
bUseExceptions = 0;
CPLSetErrorHandler( CPLDefaultErrorHandler );
}
%}
|