Class ResourceUpdateException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.snowflake.connectors.common.exception.ConnectorException
-
- com.snowflake.connectors.application.ingestion.update.ResourceUpdateException
-
- All Implemented Interfaces:
Serializable
public class ResourceUpdateException extends ConnectorException
Exception thrown when updating of a resource failed. It could happen during ingestion process or resource ingestion definition update.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ERROR_CODE
Error code of the exception, used in the underlyingresponse
.
-
Constructor Summary
Constructors Constructor Description ResourceUpdateException(Throwable cause)
Creates a new instance of theResourceUpdateException
-
Method Summary
-
Methods inherited from class com.snowflake.connectors.common.exception.ConnectorException
getContext, getResponse
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
ERROR_CODE
public static final String ERROR_CODE
Error code of the exception, used in the underlyingresponse
.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ResourceUpdateException
public ResourceUpdateException(Throwable cause)
Creates a new instance of theResourceUpdateException
- Parameters:
cause
- the root cause of this exception
-
-