Constructors Summary |
---|
public MessagingException(String message)
super(message);
mExceptionType = UNSPECIFIED_EXCEPTION;
|
public MessagingException(String message, Throwable throwable)
super(message, throwable);
mExceptionType = UNSPECIFIED_EXCEPTION;
|
public MessagingException(int exceptionType)Constructs a MessagingException with an exceptionType and a null message.
super();
mExceptionType = exceptionType;
|
public MessagingException(int exceptionType, String message)Constructs a MessagingException with an exceptionType and a message.
super(message);
mExceptionType = exceptionType;
|