From 5d3495485d57d37b6fbc0d477008c00589db84e3 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 4 Jun 2001 23:11:56 +0000 Subject: [PATCH] dont always use default exception handler --- src/ca/CASG.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/ca/CASG.cpp b/src/ca/CASG.cpp index ed2ce7b2d..928f88f9f 100644 --- a/src/ca/CASG.cpp +++ b/src/ca/CASG.cpp @@ -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 ); +} + +