Searched refs:throwable (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/ |
D | MessagingException.java | 74 public MessagingException(String message, Throwable throwable) { in MessagingException() argument 75 this(UNSPECIFIED_EXCEPTION, message, throwable); in MessagingException() 78 public MessagingException(int exceptionType, String message, Throwable throwable) { in MessagingException() argument 79 super(message, throwable); in MessagingException()
|
D | CertificateValidationException.java | 27 public CertificateValidationException(String message, Throwable throwable) { in CertificateValidationException() argument 28 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message, throwable); in CertificateValidationException()
|
D | AuthenticationFailedException.java | 31 public AuthenticationFailedException(String message, Throwable throwable) { in AuthenticationFailedException() argument 32 super(MessagingException.AUTHENTICATION_FAILED, message, throwable); in AuthenticationFailedException()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | StopRequestException.java | 33 public StopRequestException(int finalStatus, String message, Throwable throwable) { in StopRequestException() argument 34 super(message, throwable); in StopRequestException()
|
/packages/apps/Email/src/com/android/email/mail/store/ |
D | ImapStore.java | 617 public ImapException(String message, String alertText, Throwable throwable) { in ImapException() argument 618 super(message, throwable); in ImapException()
|