Home
last modified time | relevance | path

Searched refs:exceptionType (Results 1 – 3 of 3) 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/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()