public class InboxException
extends java.lang.Exception
InboxException
is the base class for all inbox related exceptionConstructor and Description |
---|
InboxException(java.lang.String message)
Constructs a new
InboxException with the specified
detail message. |
InboxException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new
InboxException with the specified
detail message and cause. |
InboxException(java.lang.Throwable cause)
Constructs a new
InboxException with the specified
cause and a detail message of
(cause==null ? null : cause.toString()) (which typically
contains the class and detail message of cause). |
public InboxException(java.lang.String message)
InboxException
with the specified
detail message. The cause is not initialized, and may subsequently be
initialized by a call to Throwable.initCause(java.lang.Throwable)
.message
- The detail message. The detail message is saved for later
retrieval by the Throwable.getMessage()
method.public InboxException(java.lang.Throwable cause)
InboxException
with the specified
cause and a detail message of
(cause==null ? null : cause.toString()) (which typically
contains the class and detail message of cause). This
constructor is useful for InboxException
that are
wrappers for other Throwable
s.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.)public InboxException(java.lang.String message, java.lang.Throwable cause)
InboxException
with the specified
detail message and cause.message
- The detail message (which is saved for later retrieval by the
Throwable.getMessage()
method).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.)Copyright © 2010 - 2020 Adobe. All Rights Reserved