-
- All Implemented Interfaces:
-
java.io.Serializable
public final class CallCompositeException extends AzureException
Defines the base type of custom Exception that can be thrown by this Library.
-
-
Constructor Summary
Constructors Constructor Description CallCompositeException(String message, Throwable cause)
Constructs a new Calling Composite exception with the specified error message and cause. CallCompositeException(Throwable cause)
Constructs a new Calling Composite exception with the specified cause and message of(cause==null ? CallCompositeException(String message)
Constructs a new Calling Composite exception with the specified error message and cause.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
CallCompositeException
CallCompositeException(String message, Throwable cause)
Constructs a new Calling Composite exception with the specified error message and cause.- Parameters:
message
- - the error message.cause
- - the cause (which is saved for later retrieval by the getCause() method).
-
CallCompositeException
CallCompositeException(Throwable cause)
Constructs a new Calling Composite exception with the specified cause and message of(cause==null ?- Parameters:
cause
- - the cause (which is saved for later retrieval by the Throwable.getCause() method).A null value is permitted, and indicates that the cause is nonexistent or unknown.
-
CallCompositeException
CallCompositeException(String message)
Constructs a new Calling Composite exception with the specified error message and cause.- Parameters:
message
- - the error message.
-
-
-
-