Xerces-C++ 3.2.5
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$
20 */
21
22#if !defined(XERCESC_INCLUDE_GUARD_SAXPARSEEXCEPTION_HPP)
23#define XERCESC_INCLUDE_GUARD_SAXPARSEEXCEPTION_HPP
24
26
28
29class Locator;
30
49{
50public:
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
108
113
115
126
154 const XMLCh* getPublicId() const;
165 const XMLCh* getSystemId() const;
167
168private:
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
#define XERCES_CPP_NAMESPACE_BEGIN
Definition XercesDefs.hpp:112
#define SAX_EXPORT
Definition XercesDefs.hpp:164
#define XERCES_CPP_NAMESPACE_END
Definition XercesDefs.hpp:113
uint16_t XMLCh
Definition Xerces_autoconf_config.hpp:120
XMLUInt64 XMLFileLoc
Definition Xerces_autoconf_config.hpp:144
Interface for associating a SAX event with a document location.
Definition Locator.hpp:55
Configurable memory manager.
Definition MemoryManager.hpp:40
Encapsulate a general SAX error or warning.
Definition SAXException.hpp:52
Encapsulate an XML parse error or warning.
Definition SAXParseException.hpp:49
XMLFileLoc getColumnNumber() const
The column number of the end of the text where the exception occurred.
SAXParseException & operator=(const SAXParseException &toAssign)
Assignment operator.
SAXParseException(const XMLCh *const message, const Locator &locator, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)
Create a new SAXParseException from a message and a Locator.
const XMLCh * getSystemId() const
Get the system identifier of the entity where the exception occurred.
SAXParseException(const SAXParseException &toCopy)
Copy constructor.
SAXParseException(const XMLCh *const message, const XMLCh *const publicId, const XMLCh *const systemId, const XMLFileLoc lineNumber, const XMLFileLoc columnNumber, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager)
Create a new SAXParseException.
XMLFileLoc getLineNumber() const
The line number of the end of the text where the exception occurred.
const XMLCh * getPublicId() const
Get the public identifier of the entity where the exception occurred.
~SAXParseException()
Destructor.
static MemoryManager * fgMemoryManager
The configurable memory manager.
Definition PlatformUtils.hpp:121