Package com.google.api.gax.rpc
Class DeadlineExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.api.gax.rpc.ApiException
-
- com.google.api.gax.rpc.DeadlineExceededException
-
- All Implemented Interfaces:
Serializable
public class DeadlineExceededException extends ApiException
Exception thrown when deadline expired before operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeadlineExceededException(String message, Throwable cause, StatusCode statusCode, boolean retryable)DeadlineExceededException(Throwable cause, StatusCode statusCode, boolean retryable)DeadlineExceededException(Throwable cause, StatusCode statusCode, boolean retryable, ErrorDetails errorDetails)
-
Method Summary
-
Methods inherited from class com.google.api.gax.rpc.ApiException
getDomain, getErrorDetails, getMetadata, getReason, getStatusCode, isRetryable
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DeadlineExceededException
public DeadlineExceededException(Throwable cause, StatusCode statusCode, boolean retryable)
-
DeadlineExceededException
public DeadlineExceededException(String message, Throwable cause, StatusCode statusCode, boolean retryable)
-
DeadlineExceededException
public DeadlineExceededException(Throwable cause, StatusCode statusCode, boolean retryable, ErrorDetails errorDetails)
-
-