public class IllegalDataException extends WellformednessException
Indicates an attempt to set some value to malformed content; for instance by adding a string containing a null or a vertical tab to a text node, or using white space in an element name.
Constructor and Description |
---|
IllegalDataException(java.lang.String message)
Creates a new
IllegalDataException
with a detail message. |
IllegalDataException(java.lang.String message,
java.lang.Throwable cause)
Creates a new
IllegalDataException
with a detail message and an underlying root cause. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getData()
Returns a string containing the actual illegal text that
caused this exception.
|
void |
setData(java.lang.String data)
Stores the illegal text that caused this exception.
|
getCause, initCause
public IllegalDataException(java.lang.String message)
Creates a new IllegalDataException
with a detail message.
message
- a string indicating the specific problempublic IllegalDataException(java.lang.String message, java.lang.Throwable cause)
Creates a new IllegalDataException
with a detail message and an underlying root cause.
message
- a string indicating the specific problemcause
- the original cause of this exceptionpublic void setData(java.lang.String data)
Stores the illegal text that caused this exception.
data
- the illegal data that caused this exceptionpublic java.lang.String getData()
Returns a string containing the actual illegal text that caused this exception.
Copyright 2002-2013 Elliotte Rusty Harold
elharo@ibiblio.org