com.google.appengine.tools.admin
Class UpdateFailureEvent
- java.lang.Object
-
- com.google.appengine.tools.admin.UpdateFailureEvent
-
public class UpdateFailureEvent extends java.lang.Object
Received by anUpdateListener
. This event indicates that an operation failed.
-
-
Constructor Summary
Constructors Constructor and Description UpdateFailureEvent(java.lang.Throwable cause, java.lang.String failureMessage, java.lang.String details)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.Throwable
getCause()
Returns the cause, if any, for the operation failure.java.lang.String
getDetails()
Returns the detailed output from the operation process.java.lang.String
getFailureMessage()
Returns the failure message for the operation.
-
-
-
Constructor Detail
-
UpdateFailureEvent
public UpdateFailureEvent(java.lang.Throwable cause, java.lang.String failureMessage, java.lang.String details)
-
-
Method Detail
-
getFailureMessage
public java.lang.String getFailureMessage()
Returns the failure message for the operation.- Returns:
- a not
null
message.
-
getCause
public java.lang.Throwable getCause()
Returns the cause, if any, for the operation failure.- Returns:
- a
Throwable
, ornull
.
-
getDetails
public java.lang.String getDetails()
Returns the detailed output from the operation process.
-
-