Package com.azure.android.core.exception
Class AzureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.azure.android.core.exception.AzureException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ServiceResponseException
public class AzureException extends java.lang.RuntimeExceptionThe base Azure exception.- See Also:
ServiceResponseException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AzureException()Initializes a new instance of the AzureException class.AzureException(java.lang.String message)Initializes a new instance of the AzureException class.AzureException(java.lang.String message, java.lang.Throwable cause)Initializes a new instance of the AzureException class.AzureException(java.lang.Throwable cause)Initializes a new instance of the AzureException class.
-
-
-
Constructor Detail
-
AzureException
public AzureException()
Initializes a new instance of the AzureException class.
-
AzureException
public AzureException(java.lang.String message)
Initializes a new instance of the AzureException class.- Parameters:
message- The exception message.
-
AzureException
public AzureException(java.lang.Throwable cause)
Initializes a new instance of the AzureException class.- Parameters:
cause- TheThrowablewhich caused the creation of this AzureException.
-
AzureException
public AzureException(java.lang.String message, java.lang.Throwable cause)Initializes a new instance of the AzureException class.- Parameters:
message- The exception message.cause- TheThrowablewhich caused the creation of this AzureException.
-
-