Source Code (Use browser search to find items of interest.)

Class Index

kdelibs'RangeException (./kdelibs/khtml/dom/dom2_range.h:40)

class RangeException {
public:
    RangeException(unsigned short _code) { code = _code; }
    RangeException(const RangeException &other) { code = other.code; }

    RangeException & operator = (const RangeException &other)
	{ code = other.code; return *this; }

    virtual ~RangeException() {}
    /**
     * An integer indicating the type of error generated.
     *
     */
    enum exceptionCode {
        BAD_ENDPOINTS_ERR = 201,
	INVALID_NODE_TYPE_ERR = 202,
	NULL_NODE_ERR = 203
    };
    unsigned short code;
};