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