public class UnsupportedObjectnameError extends UnsupportedElementError
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ELEMENT
The unsupported element.
|
| Constructor and Description |
|---|
UnsupportedObjectnameError()
Constructs a new event with the event type as its detail message.
|
UnsupportedObjectnameError(java.lang.String message)
Constructs a new event with the specified detail message. the given
detail message is expanded to the form
<EVENT_TYPE>: <message>. |
UnsupportedObjectnameError(java.lang.String message,
java.lang.Throwable cause)
Constructs a new event with the specified detail message and cause.
|
UnsupportedObjectnameError(java.lang.Throwable cause)
Constructs a new event with the specified cause and a detail message of
(cause==null ? |
getElement, getEventTypegetMessage, isTypepublic static final java.lang.String ELEMENT
public UnsupportedObjectnameError()
The ELEMENT is used to construct the event type.
UnsupportedElementError.getEventType(),
ELEMENTpublic UnsupportedObjectnameError(java.lang.String message)
<EVENT_TYPE>: <message>.
The cause is not initialized.
The ELEMENT is used to construct the event type.
message - The detail message.UnsupportedElementError.getEventType(),
ELEMENTpublic UnsupportedObjectnameError(java.lang.Throwable cause)
(cause==null ? getEventType() : cause.toString()) (which
typically contains the class and detail message of cause).
The ELEMENT is used to construct the event type.
cause - The cause.UnsupportedElementError.getEventType(),
ELEMENTpublic UnsupportedObjectnameError(java.lang.String message,
java.lang.Throwable cause)
The ELEMENT is used to construct the event type.
message - The detail message.cause - The cause.UnsupportedElementError.getEventType(),
ELEMENT