Searched defs:exceptionType (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DAuthenticationFailedException.java27 public AuthenticationFailedException(int exceptionType, String message) { argument
28 super(exceptionType, message);
H A DMessagingException.java78 public MessagingException(int exceptionType, String message, Throwable throwable) { argument
80 mExceptionType = exceptionType;
85 * Constructs a MessagingException with an exceptionType and a null message.
86 * @param exceptionType The exception type to set for this exception.
88 public MessagingException(int exceptionType) { argument
89 this(exceptionType, null, null);
101 * Constructs a MessagingException with an exceptionType and a message.
102 * @param exceptionType The exception type to set for this exception.
104 public MessagingException(int exceptionType, String message) { argument
105 this(exceptionType, messag
114 MessagingException(int exceptionType, String message, Object data) argument
[all...]

Completed in 181 milliseconds