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  * $Id: dom_exception.h,v 1.8.2.1 2003/05/18 12:34:37 mueller Exp $
00029  */
00030 #ifndef _DOM_DOMException_h_
00031 #define _DOM_DOMException_h_
00032 
00033 #include <dom/dom_misc.h>
00034 
00035 namespace DOM {
00036 
00037 
00058 class DOMException
00059 {
00060 public:
00061     DOMException(unsigned short _code) { code = _code; }
00062     DOMException(const DOMException &other) { code = other.code; }
00063 
00064     DOMException & operator = (const DOMException &other)
00065     { code = other.code; return *this; }
00066 
00067     virtual ~DOMException() {}
00072     enum ExceptionCode {
00073         INDEX_SIZE_ERR = 1,
00074         DOMSTRING_SIZE_ERR = 2,
00075         HIERARCHY_REQUEST_ERR = 3,
00076         WRONG_DOCUMENT_ERR = 4,
00077         INVALID_CHARACTER_ERR = 5,
00078         NO_DATA_ALLOWED_ERR = 6,
00079         NO_MODIFICATION_ALLOWED_ERR = 7,
00080         NOT_FOUND_ERR = 8,
00081         NOT_SUPPORTED_ERR = 9,
00082         INUSE_ATTRIBUTE_ERR = 10,
00083         INVALID_STATE_ERR = 11,
00084         SYNTAX_ERR = 12,
00085         INVALID_MODIFICATION_ERR = 13,
00086         NAMESPACE_ERR = 14,
00087         INVALID_ACCESS_ERR = 15
00088     };
00089     unsigned short code;
00090 };
00091 
00092 } //namespace
00093 #endif
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.4.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Sun Feb 27 22:16:33 2005 by doxygen 1.3.4 written by Dimitri van Heesch, © 1997-2001