Package com.adobe.cq.inbox.api
Class InboxException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- com.adobe.cq.inbox.api.InboxException
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable
public class InboxException extends java.lang.ExceptionInboxExceptionis the base class for all inbox related exception- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description InboxException(java.lang.String message)Constructs a newInboxExceptionwith the specified detail message.InboxException(java.lang.String message, java.lang.Throwable cause)Constructs a newInboxExceptionwith the specified detail message and cause.InboxException(java.lang.Throwable cause)Constructs a newInboxExceptionwith the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). 
 - 
 
- 
- 
Constructor Detail
- 
InboxException
public InboxException(java.lang.String message)
Constructs a newInboxExceptionwith the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
 message- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
 
- 
InboxException
public InboxException(java.lang.Throwable cause)
Constructs a newInboxExceptionwith 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 forInboxExceptionthat are wrappers for others.Throwable- Parameters:
 cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
 
- 
InboxException
public InboxException(java.lang.String message, java.lang.Throwable cause)Constructs a newInboxExceptionwith the specified detail message and cause.- Parameters:
 message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
 
 - 
 
 -