dont always use default exception handler

This commit is contained in:
Jeff Hill
2001-06-04 23:11:56 +00:00
parent 11388a5ad3
commit 5d3495485d

View File

@@ -300,4 +300,19 @@ int CASG::printf ( const char *pformat, ... )
return status;
}
void CASG::exception ( int status, const char *pContext,
const char *pFileName, unsigned lineNo )
{
this->client.exception ( status, pContext, pFileName, lineNo );
}
void CASG::exception ( int status, const char *pContext,
const char *pFileName, unsigned lineNo, oldChannelNotify &chan,
unsigned type, arrayElementCount count, unsigned op )
{
this->client.exception ( status, pContext, pFileName,
lineNo, chan, type, count, op );
}