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

  /packages/apps/UnifiedEmail/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/
MailTransport.java 24 import com.android.emailcommon.mail.MessagingException;
105 public void open() throws MessagingException, CertificateValidationException {
136 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
141 throw new MessagingException(MessagingException.UNSPECIFIED_EXCEPTION, iae.toString());
153 public void reopenTls() throws MessagingException {
170 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
SmtpSender.java 29 import com.android.emailcommon.mail.MessagingException;
55 public static Sender newInstance(Account account, Context context) throws MessagingException {
83 public void open() throws MessagingException {
127 throw new MessagingException(MessagingException.TLS_REQUIRED);
149 throw new MessagingException(MessagingException.AUTH_REQUIRED);
161 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
166 public void sendMessage(long messageId) throws MessagingException {
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 33 import com.android.emailcommon.mail.MessagingException;
67 public static Store newInstance(Account account, Context context) throws MessagingException {
74 private Pop3Store(Context context, Account account) throws MessagingException {
125 * @throws MessagingException if there was some problem with the account
128 public Bundle checkSettings() throws MessagingException {
168 * @throws MessagingException if the account is not going to be useable
170 public Bundle checkSettings() throws MessagingException {
172 int result = MessagingException.NO_ERROR;
186 result = MessagingException.IOERROR;
195 public synchronized void open(OpenMode mode) throws MessagingException {
    [all...]

Completed in 67 milliseconds