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

/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DAuthenticationFailedException.java27 public AuthenticationFailedException(int exceptionType, String message) { argument
28 super(exceptionType, message);
H A DMessagingException.java82 public MessagingException(int exceptionType, String message, Throwable throwable) { argument
84 mExceptionType = exceptionType;
89 * Constructs a MessagingException with an exceptionType and a null message.
90 * @param exceptionType The exception type to set for this exception.
92 public MessagingException(int exceptionType) { argument
93 this(exceptionType, null, null);
105 * Constructs a MessagingException with an exceptionType and a message.
106 * @param exceptionType The exception type to set for this exception.
108 public MessagingException(int exceptionType, String message) { argument
109 this(exceptionType, messag
118 MessagingException(int exceptionType, String message, Object data) argument
[all...]
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DAuthenticationFailedException.java26 public AuthenticationFailedException(int exceptionType, String message) { argument
27 super(exceptionType, message);
H A DMessagingException.java81 public MessagingException(int exceptionType, String message, Throwable throwable) { argument
83 mExceptionType = exceptionType;
88 * Constructs a MessagingException with an exceptionType and a null message.
89 * @param exceptionType The exception type to set for this exception.
91 public MessagingException(int exceptionType) { argument
92 this(exceptionType, null, null);
104 * Constructs a MessagingException with an exceptionType and a message.
105 * @param exceptionType The exception type to set for this exception.
107 public MessagingException(int exceptionType, String message) { argument
108 this(exceptionType, messag
117 MessagingException(int exceptionType, String message, Object data) argument
[all...]

Completed in 257 milliseconds