public abstract class ErrorEvent extends JVoiceXMLEvent
| Constructor and Description |
|---|
ErrorEvent()
Constructs a new event with the event type as its detail message.
|
ErrorEvent(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>. |
ErrorEvent(java.lang.String message,
java.lang.Throwable cause)
Constructs a new event with the specified detail message and cause.
|
ErrorEvent(java.lang.Throwable cause)
Constructs a new event with the specified cause and a detail message of
(cause==null ? |
getEventType, getMessage, isTypepublic ErrorEvent()
JVoiceXMLEvent.getEventType()public ErrorEvent(java.lang.String message)
<EVENT_TYPE>: <message>.
The cause is not initialized.message - The detail message.JVoiceXMLEvent.getEventType()public ErrorEvent(java.lang.Throwable cause)
(cause==null ? getEventType() : cause.toString()) (which
typically contains the class and detail message of cause).cause - The cause.JVoiceXMLEvent.getEventType()public ErrorEvent(java.lang.String message,
java.lang.Throwable cause)
message - The detail message.cause - The cause.