Home
last modified time | relevance | path

Searched refs:exceptionType (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
DMessagingException.java73 protected int exceptionType; field in MessagingException
81 public MessagingException(int exceptionType, String message, Throwable throwable) { in MessagingException() argument
83 this.exceptionType = exceptionType; in MessagingException()
92 public MessagingException(int exceptionType) { in MessagingException() argument
93 this(exceptionType, null, null); in MessagingException()
110 public MessagingException(int exceptionType, String message) { in MessagingException() argument
111 this(exceptionType, message, null); in MessagingException()
121 public MessagingException(int exceptionType, String message, Object data) { in MessagingException() argument
123 this.exceptionType = exceptionType; in MessagingException()
133 return exceptionType; in getExceptionType()
DAuthenticationFailedException.java26 public AuthenticationFailedException(int exceptionType, String message) { in AuthenticationFailedException() argument
27 super(exceptionType, message); in AuthenticationFailedException()
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
DMessagingException.java82 public MessagingException(int exceptionType, String message, Throwable throwable) { in MessagingException() argument
84 mExceptionType = exceptionType; in MessagingException()
92 public MessagingException(int exceptionType) { in MessagingException() argument
93 this(exceptionType, null, null); in MessagingException()
108 public MessagingException(int exceptionType, String message) { in MessagingException() argument
109 this(exceptionType, message, null); in MessagingException()
118 public MessagingException(int exceptionType, String message, Object data) { in MessagingException() argument
120 mExceptionType = exceptionType; in MessagingException()
DAuthenticationFailedException.java27 public AuthenticationFailedException(int exceptionType, String message) { in AuthenticationFailedException() argument
28 super(exceptionType, message); in AuthenticationFailedException()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountCheckSettingsFragment.java475 final int exceptionType = result.getExceptionType(); in onPostExecute() local
477 switch (exceptionType) { in onPostExecute()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java4828 Integer exceptionType = values.getAsInteger(AggregationExceptions.TYPE); in updateAggregationException() local
4831 if (exceptionType == null || rcId1 == null || rcId2 == null) { in updateAggregationException()
4845 if (exceptionType == AggregationExceptions.TYPE_AUTOMATIC) { in updateAggregationException()
4853 exceptionValues.put(AggregationExceptions.TYPE, exceptionType); in updateAggregationException()