khtml Library API Documentation

dom_exception.h

00001 /* 00002 * This file is part of the DOM implementation for KDE. 00003 * 00004 * (C) 1999 Lars Knoll (knoll@kde.org) 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Library General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public License 00017 * along with this library; see the file COPYING.LIB. If not, write to 00018 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00019 * Boston, MA 02111-1307, USA. 00020 * 00021 * This file includes excerpts from the Document Object Model (DOM) 00022 * Level 1 Specification (Recommendation) 00023 * http://www.w3.org/TR/REC-DOM-Level-1/ 00024 * Copyright © World Wide Web Consortium , (Massachusetts Institute of 00025 * Technology , Institut National de Recherche en Informatique et en 00026 * Automatique , Keio University ). All Rights Reserved. 00027 * 00028 */ 00029 #ifndef _DOM_DOMException_h_ 00030 #define _DOM_DOMException_h_ 00031 00032 #include <dom/dom_misc.h> 00033 00034 namespace DOM { 00035 00036 00057 class DOMException 00058 { 00059 public: 00060 DOMException(unsigned short _code) { code = _code; } 00061 DOMException(const DOMException &other) { code = other.code; } 00062 00063 DOMException & operator = (const DOMException &other) 00064 { code = other.code; return *this; } 00065 00066 virtual ~DOMException() {} 00071 enum ExceptionCode { 00072 INDEX_SIZE_ERR = 1, 00073 DOMSTRING_SIZE_ERR = 2, 00074 HIERARCHY_REQUEST_ERR = 3, 00075 WRONG_DOCUMENT_ERR = 4, 00076 INVALID_CHARACTER_ERR = 5, 00077 NO_DATA_ALLOWED_ERR = 6, 00078 NO_MODIFICATION_ALLOWED_ERR = 7, 00079 NOT_FOUND_ERR = 8, 00080 NOT_SUPPORTED_ERR = 9, 00081 INUSE_ATTRIBUTE_ERR = 10, 00082 INVALID_STATE_ERR = 11, 00083 SYNTAX_ERR = 12, 00084 INVALID_MODIFICATION_ERR = 13, 00085 NAMESPACE_ERR = 14, 00086 INVALID_ACCESS_ERR = 15 00087 }; 00088 unsigned short code; 00089 }; 00090 00091 } //namespace 00092 #endif
KDE Logo
This file is part of the documentation for khtml Library Version 3.2.3.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Fri Aug 20 09:50:27 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003