Class AzureException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AmqpException, CosmosException, DataLakeAclChangeFailedException, DocumentModelOperationException, HttpRequestException, HttpResponseException, IndexBatchException, InvalidParticipantException, SchemaRegistryApacheAvroException, ServiceBusException, ServiceResponseException, TextAnalyticsException

public class AzureException extends RuntimeException
The base Azure exception.
See Also:
  • Constructor Details

    • AzureException

      public AzureException()
      Initializes a new instance of the AzureException class.
    • AzureException

      public AzureException(String message)
      Initializes a new instance of the AzureException class.
      Parameters:
      message - The exception message.
    • AzureException

      public AzureException(Throwable cause)
      Initializes a new instance of the AzureException class.
      Parameters:
      cause - The Throwable which caused the creation of this AzureException.
    • AzureException

      public AzureException(String message, Throwable cause)
      Initializes a new instance of the AzureException class.
      Parameters:
      message - The exception message.
      cause - The Throwable which caused the creation of this AzureException.
    • AzureException

      public AzureException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Initializes a new instance of the AzureException class.
      Parameters:
      message - The exception message.
      cause - The Throwable which caused the creation of this AzureException.
      enableSuppression - Whether suppression is enabled or disabled.
      writableStackTrace - Whether the exception stack trace will be filled in.