Package com.google.gwt.xml.client
Class DOMException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.gwt.xml.client.DOMException
-
- All Implemented Interfaces:
java.io.Serializable
public class DOMException extends java.lang.RuntimeExceptionThrown when DOM exceptions occur. Two subclasses exist:DOMNodeExceptionandDOMParseExceptionwhich give more detailed information for DOM manipulation errors and parse errors, respectively. AllDOMExceptionsthrown in this package will be instances of one of those two classes.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected shortcodestatic shortINVALID_ACCESS_ERRstatic shortINVALID_CHARACTER_ERRstatic shortINVALID_MODIFICATION_ERRstatic shortINVALID_STATE_ERRstatic shortSYNTAX_ERR
-
Constructor Summary
Constructors Constructor Description DOMException(short code, java.lang.String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetCode()This method gets the code of thisDOMException.
-
-
-
Field Detail
-
INVALID_ACCESS_ERR
public static final short INVALID_ACCESS_ERR
- See Also:
- Constant Field Values
-
INVALID_CHARACTER_ERR
public static final short INVALID_CHARACTER_ERR
- See Also:
- Constant Field Values
-
INVALID_MODIFICATION_ERR
public static final short INVALID_MODIFICATION_ERR
- See Also:
- Constant Field Values
-
INVALID_STATE_ERR
public static final short INVALID_STATE_ERR
- See Also:
- Constant Field Values
-
SYNTAX_ERR
public static final short SYNTAX_ERR
- See Also:
- Constant Field Values
-
code
protected short code
-
-