Xerces-C++  3.1.2
SAXParseException.hpp
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 /*
19  * $Id: SAXParseException.hpp 932887 2010-04-11 13:04:59Z borisk $
20  */
21 
22 #if !defined(XERCESC_INCLUDE_GUARD_SAXPARSEEXCEPTION_HPP)
23 #define XERCESC_INCLUDE_GUARD_SAXPARSEEXCEPTION_HPP
24 
26 
28 
29 class Locator;
30 
49 {
50 public:
67  SAXParseException(const XMLCh* const message, const Locator& locator,
69 
70 
93  (
94  const XMLCh* const message
95  , const XMLCh* const publicId
96  , const XMLCh* const systemId
97  , const XMLFileLoc lineNumber
98  , const XMLFileLoc columnNumber
100  );
101 
107  SAXParseException(const SAXParseException& toCopy);
108 
113 
115 
126 
138  XMLFileLoc getColumnNumber() const;
146  XMLFileLoc getLineNumber() const;
154  const XMLCh* getPublicId() const;
165  const XMLCh* getSystemId() const;
167 
168 private:
169  /* Data Members */
170 
171  /* The column in the source text where the error occured. */
172  XMLFileLoc fColumnNumber;
173  /* The line in the source text where the error occured. */
174  XMLFileLoc fLineNumber;
175  /* The public id of the file where the error occured. */
176  XMLCh* fPublicId;
177  /* The system id of the file where the error occured. */
178  XMLCh* fSystemId;
179 
180 
181 };
182 
184 
185 #endif
static MemoryManager * fgMemoryManager
The configurable memory manager.
Definition: PlatformUtils.hpp:121
#define SAX_EXPORT
Definition: XercesDefs.hpp:164
XMLUInt64 XMLFileLoc
Definition: Xerces_autoconf_config.borland.hpp:116
Interface for associating a SAX event with a document location.
Definition: Locator.hpp:54
Configurable memory manager.
Definition: MemoryManager.hpp:39
#define XERCES_CPP_NAMESPACE_BEGIN
Definition: XercesDefs.hpp:112
wchar_t XMLCh
Definition: Xerces_autoconf_config.borland.hpp:92
#define XERCES_CPP_NAMESPACE_END
Definition: XercesDefs.hpp:113
Encapsulate a general SAX error or warning.
Definition: SAXException.hpp:51
Encapsulate an XML parse error or warning.
Definition: SAXParseException.hpp:48
SAXException & operator=(const SAXException &toCopy)
Assignment operator.
Definition: SAXException.hpp:125