Class InvalidIngressServiceException
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.InvalidIngressServiceException
- All Implemented Interfaces:
Serializable
@Public
@Evolving
public final class InvalidIngressServiceException
extends AbfsRestOperationException
Exception thrown when an invalid ingress service is encountered.
This exception is used to indicate that the ingress service being used
is not valid or supported. It extends the AbfsRestOperationException
to provide additional context about the error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidIngressServiceException(int statusCode, String errorCode, String errorMessage, Exception innerException) Constructs a new InvalidIngressServiceException with the specified details. -
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
-
InvalidIngressServiceException
public InvalidIngressServiceException(int statusCode, String errorCode, String errorMessage, Exception innerException) Constructs a new InvalidIngressServiceException with the specified details.- Parameters:
statusCode- the HTTP status codeerrorCode- the error codeerrorMessage- the error messageinnerException- the inner exception
-