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
@Deprecated(since="2.5.0", forRemoval=true) public class OciApiException extends ApiException
Deprecated, for removal: This API element is subject to removal in a future version.OCI SDK insteadOCI integration exception. This exception is used when the API invocation fails before we receive an HTTP response.OciRestException
is used otherwise.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OciApiException()
Deprecated, for removal: This API element is subject to removal in a future version.Exception without a message and cause.OciApiException(String message)
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message.OciApiException(String message, Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and cause.OciApiException(Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.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 Detail
-
OciApiException
public OciApiException()
Deprecated, for removal: This API element is subject to removal in a future version.Exception without a message and cause.
-
OciApiException
public OciApiException(String message)
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message.- Parameters:
message
- message
-
OciApiException
public OciApiException(String message, Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.Exception with message and cause.- Parameters:
message
- messagecause
- cause
-
OciApiException
public OciApiException(Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.Exception with cause and no message.- Parameters:
cause
- cause
-
-