Home | History | Annotate | Download | only in transport

Lines Matching defs:MessagingException

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());
190 public void sendMessage(long messageId) throws MessagingException {
196 throw new MessagingException("Trying to send non-existent message id="
223 throw new MessagingException("Unable to send message", ioe);
239 * onto multiple lines. Throws MessagingException if response code is 4xx or 5xx. All traffic
245 private String executeSimpleCommand(String command) throws IOException, MessagingException {
251 * onto multiple lines. Throws MessagingException if response code is 4xx or 5xx.
259 throws IOException, MessagingException {
276 throw new MessagingException(result);
301 private void saslAuthLogin(String username, String password) throws MessagingException,
312 catch (MessagingException me) {
320 private void saslAuthPlain(String username, String password) throws MessagingException,
327 catch (MessagingException me) {