Class OciApiException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.integrations.common.rest.ApiException
io.helidon.integrations.oci.connect.OciApiException
- All Implemented Interfaces:
Serializable
OCI integration exception.
This exception is used when the API invocation fails before we receive an HTTP
response.
OciRestException is used otherwise.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionException without a message and cause.OciApiException(String message) Exception with message.OciApiException(String message, Throwable cause) Exception with message and cause.OciApiException(Throwable cause) Exception with cause and no message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OciApiException
public OciApiException()Exception without a message and cause. -
OciApiException
Exception with message.- Parameters:
message- message
-
OciApiException
Exception with message and cause.- Parameters:
message- messagecause- cause
-
OciApiException
Exception with cause and no message.- Parameters:
cause- cause
-