Package org.forgerock.json.resource
Class RetryableException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.io.IOException
 - 
- org.forgerock.json.resource.ResourceException
 - 
- org.forgerock.json.resource.RetryableException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Response
- Direct Known Subclasses:
 ServiceUnavailableException
public class RetryableException extends ResourceException
An exception that indicates that a failure may be temporary, and that retrying the same request may be able to succeed in the future. Use a specific retryable sub-type if available. 
- 
- 
Field Summary
- 
Fields inherited from class org.forgerock.json.resource.ResourceException
BAD_REQUEST, CONFLICT, FIELD_CAUSE, FIELD_CODE, FIELD_DETAIL, FIELD_MESSAGE, FIELD_REASON, FORBIDDEN, INTERNAL_ERROR, NOT_FOUND, NOT_SUPPORTED, UNAVAILABLE, UNSUPPORTED_MEDIA_TYPE, VERSION_MISMATCH, VERSION_REQUIRED 
 - 
 
- 
Constructor Summary
Constructors Constructor Description RetryableException(int code, String message, Throwable cause)Constructs a new exception with the specified detail message and cause. 
- 
Method Summary
- 
Methods inherited from class org.forgerock.json.resource.ResourceException
asPromise, getCode, getDetail, getException, getException, getException, getReason, getResourceApiVersion, includeCauseInJsonValue, isServerError, newResourceException, newResourceException, newResourceException, setDetail, setReason, setResourceApiVersion, toJsonValue 
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface org.forgerock.json.resource.Response
getCacheControl 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
RetryableException
public RetryableException(int code, String message, Throwable cause)Constructs a new exception with the specified detail message and cause.- Parameters:
 code- The numeric code of the exception.message- The detail message.cause- The exception which caused this exception to be thrown.
 
 - 
 
 -