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 {
192 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
205 public void reopenTls() throws MessagingException {
223 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 29 import com.android.emailcommon.mail.MessagingException;
184 boolean useSmartReply, boolean sendBcc) throws IOException, MessagingException {
283 Attachment attachment) throws IOException, MessagingException {
328 throw new MessagingException("Invalid attachment.", ioe);
330 throw new MessagingException(MessagingException.GENERAL_SECURITY,
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 36 import com.android.emailcommon.mail.MessagingException;
92 public static Store newInstance(Account account, Context context) throws MessagingException {
99 private Pop3Store(Context context, Account account) throws MessagingException {
105 throw new MessagingException("Unsupported protocol");
190 * @throws MessagingException if there was some problem with the account
193 public Bundle checkSettings() throws MessagingException {
233 * @throws MessagingException if the account is not going to be useable
235 public Bundle checkSettings() throws MessagingException {
237 int result = MessagingException.NO_ERROR;
252 result = MessagingException.IOERROR
    [all...]

Completed in 157 milliseconds