HomeSort by relevance Sort by last modified time
    Searched defs:MessagingException (Results 1 - 5 of 5) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
MessagingException.java 29 public class MessagingException extends Exception {
74 public MessagingException(String message, Throwable throwable) {
78 public MessagingException(int exceptionType, String message, Throwable throwable) {
85 * Constructs a MessagingException with an exceptionType and a null message.
88 public MessagingException(int exceptionType) {
93 * Constructs a MessagingException with a message.
96 public MessagingException(String message) {
101 * Constructs a MessagingException with an exceptionType and a message.
104 public MessagingException(int exceptionType, String message) {
109 * Constructs a MessagingException with an exceptionType, a message, and dat
    [all...]
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 31 import com.android.emailcommon.mail.MessagingException;
56 public static Sender newInstance(Account account, Context context) throws MessagingException {
63 private SmtpSender(Context context, Account account) throws MessagingException {
67 throw new MessagingException("Unsupported protocol");
107 public void open() throws MessagingException {
151 throw new MessagingException(MessagingException.TLS_REQUIRED);
173 throw new MessagingException(MessagingException.AUTH_REQUIRED);
185 throw new MessagingException(MessagingException.IOERROR, ioe.toString())
    [all...]
MailTransport.java 23 import com.android.emailcommon.mail.MessagingException;
161 public void open() throws MessagingException, CertificateValidationException {
191 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
204 public void reopenTls() throws MessagingException {
221 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 36 import com.android.emailcommon.mail.MessagingException;
91 public static Store newInstance(Account account, Context context) throws MessagingException {
98 private Pop3Store(Context context, Account account) throws MessagingException {
104 throw new MessagingException("Unsupported protocol");
189 * @throws MessagingException if there was some problem with the account
192 public Bundle checkSettings() throws MessagingException {
232 * @throws MessagingException if the account is not going to be useable
234 public Bundle checkSettings() throws MessagingException {
236 int result = MessagingException.NO_ERROR;
251 result = MessagingException.IOERROR
    [all...]
  /tools/motodev/src/plugins/videos/libs/
mail.jar 

Completed in 69 milliseconds