--- parser3/src/main/pa_exception.C 2001/01/30 11:51:07 1.1 +++ parser3/src/main/pa_exception.C 2001/02/22 10:43:45 1.4 @@ -1,5 +1,5 @@ /* - $Id: pa_exception.C,v 1.1 2001/01/30 11:51:07 paf Exp $ + $Id: pa_exception.C,v 1.4 2001/02/22 10:43:45 paf Exp $ */ #include @@ -8,30 +8,20 @@ #include "pa_exception.h" #include "pa_common.h" -Exception::Exception() : - ftype(0), - fcode(0), - fproblem_source(0), - fcomment("") { -} - -void Exception::die(char *acomment) { - // FIX: log(LOG_ERROR, acomment) - fprintf(stderr, "die: %s\n", acomment); - exit(1); -} - -void Exception::raise(const String *atype, const String *acode, +void Exception::_throw(const String *atype, const String *acode, const String *aproblem_source, - const char *comment_fmt, ...) { + const char *comment_fmt, ...) const { ftype=atype; fcode=acode; fproblem_source=aproblem_source; - - va_list args; - va_start(args, comment_fmt); - vsnprintf(fcomment, MAX_STRING, comment_fmt, args); - va_end(args); + + if(comment_fmt) { + va_list args; + va_start(args, comment_fmt); + vsnprintf(fcomment, MAX_STRING, comment_fmt, args); + va_end(args); + } else + fcomment[0]=0; longjmp(mark, 1); }