Class AbfsDriverException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.hadoop.fs.azurebfs.contracts.exceptions.AzureBlobFileSystemException
org.apache.hadoop.fs.azurebfs.contracts.exceptions.AbfsRestOperationException
org.apache.hadoop.fs.azurebfs.contracts.exceptions.AbfsDriverException
- All Implemented Interfaces:
Serializable
Exception to be thrown if any Runtime Exception occurs.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAbfsDriverException(Exception innerException) Constructs anAbfsDriverExceptionwith the specified inner exception.AbfsDriverException(Exception innerException, String activityId) Constructs anAbfsDriverExceptionwith the specified inner exception and activity ID for correlation.AbfsDriverException(String errorMessage, Exception innerException) Constructs anAbfsDriverExceptionwith a custom error message and inner exception. -
Method Summary
Methods inherited from class org.apache.hadoop.fs.azurebfs.contracts.exceptions.AbfsRestOperationException
getErrorCode, getErrorMessage, getStatusCodeMethods inherited from class org.apache.hadoop.fs.azurebfs.contracts.exceptions.AzureBlobFileSystemException
toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
AbfsDriverException
Constructs anAbfsDriverExceptionwith the specified inner exception.- Parameters:
innerException- the underlying exception that caused the failure
-
AbfsDriverException
Constructs anAbfsDriverExceptionwith the specified inner exception and activity ID for correlation.- Parameters:
innerException- the underlying exception that caused the failureactivityId- the request or operation ID for traceability
-
AbfsDriverException
Constructs anAbfsDriverExceptionwith a custom error message and inner exception.- Parameters:
errorMessage- a custom error message describing the failureinnerException- the underlying exception that caused the failure
-