public class CreationException
extends java.lang.Exception
Constructor and Description |
---|
CreationException()
Create a new CreationException instance.
|
CreationException(org.w3c.dom.Document d)
Create a new CreationException instance with a specified invalid
document.
|
CreationException(java.lang.Exception e)
Create a new CreationException instance with a specified nested
exception.
|
CreationException(java.lang.Exception e,
org.w3c.dom.Document d)
Create a new CreationException instance with a specified nested
exception and a specified invalid document.
|
CreationException(java.lang.String m)
Create a new CreationException instance with a specified detail message.
|
CreationException(java.lang.String m,
org.w3c.dom.Document d)
Create a new CreationException instance with a specified detail message
and a specified invalid document.
|
CreationException(java.lang.String m,
java.lang.Exception e)
Create a new CreationException instance with a specified detail message
and a specified nested exception.
|
CreationException(java.lang.String m,
java.lang.Exception e,
org.w3c.dom.Document d)
Create a new CreationException instance with a specified detail message,
a specified nested exception and a specified invalid document.
|
Modifier and Type | Method and Description |
---|---|
org.w3c.dom.Document |
getDocument()
Retrieve the invalid document of this CreationException.
|
java.lang.Exception |
getException()
Retrieve the nested exception of this CreationException.
|
public CreationException()
public CreationException(java.lang.String m)
m
- The detail message.public CreationException(java.lang.Exception e)
e
- The nested exception.public CreationException(org.w3c.dom.Document d)
d
- The invalid document.public CreationException(java.lang.String m, java.lang.Exception e)
m
- The detail message.e
- The nested exception.public CreationException(java.lang.String m, org.w3c.dom.Document d)
m
- The detail message.d
- The invalid document.public CreationException(java.lang.Exception e, org.w3c.dom.Document d)
e
- The nested exception.d
- The invalid document.public CreationException(java.lang.String m, java.lang.Exception e, org.w3c.dom.Document d)
m
- The detail message.e
- The nested exception.d
- The invalid document.public java.lang.Exception getException()
public org.w3c.dom.Document getDocument()