00001 /*00002 * Licensed to the Apache Software Foundation (ASF) under one or more00003 * contributor license agreements. See the NOTICE file distributed with00004 * this work for additional information regarding copyright ownership.00005 * The ASF licenses this file to You under the Apache License, Version 2.000006 * (the "License"); you may not use this file except in compliance with00007 * the License. You may obtain a copy of the License at00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.000010 * 00011 * Unless required by applicable law or agreed to in writing, software00012 * distributed under the License is distributed on an "AS IS" BASIS,00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.00014 * See the License for the specific language governing permissions and00015 * limitations under the License.00016 */00017
00018 /*00019 * $Id: SAXParseException.hpp 568078 2007-08-21 11:43:25Z amassari $00020 */00021
00022
00023 #ifndef SAXPARSEEXCEPTION_HPP00024 #define SAXPARSEEXCEPTION_HPP00025
00026 #include <xercesc/sax/SAXException.hpp>00027
00028 XERCES_CPP_NAMESPACE_BEGIN00029
00030 class Locator;
00031
00049class SAXParseException : publicSAXException00050 {
00051 public:
00068 SAXParseException(const XMLCh* const message, constLocator& locator,
00069 MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00070
00071
00093 SAXParseException00094 (
00095 const XMLCh* const message
00096 , const XMLCh* const publicId
00097 , const XMLCh* const systemId
00098 , const XMLSSize_t lineNumber
00099 , const XMLSSize_t columnNumber
00100 , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager00101 );
00102
00108 SAXParseException(constSAXParseException& toCopy);
00109
00113 ~SAXParseException();
00114
00116
00125 SAXParseException& operator=(constSAXParseException& toAssign);
00127
00139 XMLSSize_t getColumnNumber() const;
00147 XMLSSize_t getLineNumber() const;
00155 const XMLCh* getPublicId() const;
00166 const XMLCh* getSystemId() const;
00168
00169 private:
00170 /* Data Members */00171
00172 /* The column in the source text where the error occured. */00173 XMLSSize_t fColumnNumber;
00174 /* The line in the source text where the error occured. */00175 XMLSSize_t fLineNumber;
00176 /* The public id of the file where the error occured. */00177 XMLCh* fPublicId;
00178 /* The system id of the file where the error occured. */00179 XMLCh* fSystemId;
00180
00181
00182 };
00183
00184 XERCES_CPP_NAMESPACE_END00185
00186 #endif