Annotation of parser3/src/include/pa_exception.h, revision 1.22
1.10 paf 1: /** @file
1.11 paf 2: Parser: exception decls.
3:
1.6 paf 4: Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
1.20 paf 5: Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru)
1.6 paf 6:
1.22 ! paf 7: $Id: pa_exception.h,v 1.21 2001/11/15 18:21:31 paf Exp $
1.1 paf 8: */
9:
10: #ifndef PA_EXCEPTION_H
11: #define PA_EXCEPTION_H
12:
1.12 parser 13: #include "pa_config_includes.h"
1.1 paf 14: #include "pa_types.h"
15: #include "pa_string.h"
16:
1.14 parser 17: #ifdef XML
18: #include <PlatformSupport/XSLException.hpp>
19: #include <sax/SAXException.hpp>
20: #include <sax/SAXParseException.hpp>
21: #include <util/XMLException.hpp>
22: #endif
23:
24: class Pool;
25:
1.22 ! paf 26: // defines
! 27:
1.10 paf 28: /// Just simple longjump mechanizm dressed in class clothes. use Temp_exception
1.1 paf 29: class Exception {
30: public:
31:
1.19 paf 32: Exception();
1.15 parser 33: Exception(
1.1 paf 34: const String *atype, const String *acode,
35: const String *aproblem_source,
1.15 parser 36: const char *comment_fmt, ...);
1.22 ! paf 37: Exception(const Exception& src);
! 38: Exception& operator =(const Exception& src);
! 39: ~Exception();
1.14 parser 40:
41: #ifdef XML
42: /// converts XSL exception to parser exception
1.18 parser 43: static void provide_source(Pool& pool, const String *source, const XSLException& e);
1.14 parser 44: /// converts SAX exception to parser exception
1.18 parser 45: static void provide_source(Pool& pool, const String *source, const SAXException& e);
1.14 parser 46: /// converts SAX parse exception to parser exception
1.18 parser 47: static void provide_source(Pool& pool, const String *source, const SAXParseException& e);
1.14 parser 48: /// converts XML exception to parser exception
1.18 parser 49: static void provide_source(Pool& pool, const String *source, const XMLException& e);
1.14 parser 50: /// converts Xalan DOM exception to parser exception
1.18 parser 51: static void provide_source(Pool& pool, const String *source, const XalanDOMException& e);
1.14 parser 52: #endif
1.1 paf 53:
1.10 paf 54: /// extracts exception type
1.5 paf 55: const String *type() const { return ftype; }
1.10 paf 56: /// extracts exception code
1.5 paf 57: const String *code() const { return fcode; }
1.10 paf 58: /// extracts exception problem_source
1.5 paf 59: const String *problem_source() const { return fproblem_source; }
1.10 paf 60: /// extracts exception comment
1.22 ! paf 61: const char *comment() const { return fcomment; }
1.1 paf 62:
63: private:
64:
1.15 parser 65: const String *ftype, *fcode, *fproblem_source;
1.22 ! paf 66: bool owns_comment;
! 67: char *fcomment;
1.15 parser 68:
1.1 paf 69: };
70:
71: #endif
E-mail: