SourceForge.net Logo
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Examples

DOMException.hpp

Go to the documentation of this file.
00001 /*
00002  * Licensed to the Apache Software Foundation (ASF) under one or more
00003  * contributor license agreements.  See the NOTICE file distributed with
00004  * this work for additional information regarding copyright ownership.
00005  * The ASF licenses this file to You under the Apache License, Version 2.0
00006  * (the "License"); you may not use this file except in compliance with
00007  * the License.  You may obtain a copy of the License at
00008  *
00009  *      http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * 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 and
00015  * limitations under the License.
00016  */
00017 
00018 /*
00019  * $Id: DOMException.hpp 671894 2008-06-26 13:29:21Z borisk $
00020  */
00021 
00022 #if !defined(XERCESC_INCLUDE_GUARD_DOMEXCEPTION_HPP)
00023 #define XERCESC_INCLUDE_GUARD_DOMEXCEPTION_HPP
00024 
00025 #include <xercesc/util/XercesDefs.hpp>
00026 #include <xercesc/util/PlatformUtils.hpp>
00027 
00028 XERCES_CPP_NAMESPACE_BEGIN
00029 
00030 
00050 class MemoryManager;
00051 
00052 class CDOM_EXPORT DOMException  {
00053 public:
00054     // -----------------------------------------------------------------------
00055     //  Class Types
00056     // -----------------------------------------------------------------------
00137     enum ExceptionCode {
00138          INDEX_SIZE_ERR                 = 1,
00139          DOMSTRING_SIZE_ERR             = 2,
00140          HIERARCHY_REQUEST_ERR          = 3,
00141          WRONG_DOCUMENT_ERR             = 4,
00142          INVALID_CHARACTER_ERR          = 5,
00143          NO_DATA_ALLOWED_ERR            = 6,
00144          NO_MODIFICATION_ALLOWED_ERR    = 7,
00145          NOT_FOUND_ERR                  = 8,
00146          NOT_SUPPORTED_ERR              = 9,
00147          INUSE_ATTRIBUTE_ERR            = 10,
00148          INVALID_STATE_ERR              = 11,
00149          SYNTAX_ERR                     = 12,
00150          INVALID_MODIFICATION_ERR       = 13,
00151          NAMESPACE_ERR                  = 14,
00152          INVALID_ACCESS_ERR             = 15,
00153          VALIDATION_ERR                 = 16,
00154          TYPE_MISMATCH_ERR              = 17
00155         };
00157 
00158 public:
00159     // -----------------------------------------------------------------------
00160     //  Constructors
00161     // -----------------------------------------------------------------------
00168     DOMException();
00169 
00177     DOMException(short code,
00178                  short messageCode = 0,
00179                  MemoryManager* const  memoryManager = XMLPlatformUtils::fgMemoryManager);
00180 
00186     DOMException(const DOMException &other);
00187 
00189 
00190     // -----------------------------------------------------------------------
00191     //  Destructors
00192     // -----------------------------------------------------------------------
00199     virtual ~DOMException();
00201 
00202 
00203 public:
00204     // -----------------------------------------------------------------------
00205     //  Getter
00206     // -----------------------------------------------------------------------
00207     inline const XMLCh* getMessage()    const;
00208 
00209     // -----------------------------------------------------------------------
00210     //  Class Types
00211     // -----------------------------------------------------------------------
00218     short   code;
00219 
00226     const XMLCh *msg;
00228 
00229 protected:
00230     MemoryManager*  fMemoryManager;
00231 
00232 private:
00233 
00241     bool            fMsgOwned;
00242 
00243 private:
00244     // -----------------------------------------------------------------------
00245     // Unimplemented constructors and operators
00246     // -----------------------------------------------------------------------
00247     DOMException & operator = (const DOMException &);
00248 };
00249 
00250 inline const XMLCh* DOMException::getMessage() const
00251 {
00252     return msg;
00253 }
00254 
00255 XERCES_CPP_NAMESPACE_END
00256 
00257 #endif

Generated on Fri Sep 25 06:55:48 2009 for XQilla DOM Level 3 API by  doxygen 1.3.9.1