Home | History | Annotate | Download | only in store

Lines Matching refs:MessagingException

29 import com.android.email.mail.MessagingException;
139 throws MessagingException {
153 private ImapStore(Context context, String uriString) throws MessagingException {
159 throw new MessagingException("Invalid ImapStore URI", use);
164 throw new MessagingException("Unsupported protocol");
367 public Folder getFolder(String name) throws MessagingException {
380 public Folder[] getPersonalNamespaces() throws MessagingException {
413 throw new MessagingException("Unable to get folder list.", ioe);
421 public void checkSettings() throws MessagingException {
427 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
442 } catch (MessagingException e) {
521 throws MessagingException {
576 throw new MessagingException("Can't open mailbox: "
582 throw new MessagingException("Did not find message count during select");
592 } catch (MessagingException e) {
605 public OpenMode getMode() throws MessagingException {
626 public boolean exists() throws MessagingException {
650 } catch (MessagingException me) {
671 public boolean create(FolderType type) throws MessagingException {
690 } catch (MessagingException me) {
706 MessageUpdateCallbacks callbacks) throws MessagingException {
726 public int getUnreadMessageCount() throws MessagingException {
749 public void delete(boolean recurse) throws MessagingException {
754 throws MessagingException {
787 public Message getMessage(String uid) throws MessagingException {
801 throws MessagingException {
803 throw new MessagingException(String.format("Invalid range: %d %d", start, end));
810 public Message[] getMessages(MessageRetrievalListener listener) throws MessagingException {
816 throws MessagingException {
824 throws MessagingException {
839 throws MessagingException {
852 MessageRetrievalListener listener) throws MessagingException {
962 } catch (MessagingException e) {
1009 public Flag[] getPermanentFlags() throws MessagingException {
1034 throws MessagingException {
1100 throw new MessagingException("BODYSTRUCTURE " + MimeUtility.MIME_TYPE_RFC822
1200 throw new MessagingException("Unknown part type " + part.toString());
1214 public void appendMessages(Message[] messages) throws MessagingException {
1299 public Message[] expunge() throws MessagingException {
1313 throws MessagingException {
1345 private void checkOpen() throws MessagingException {
1347 throw new MessagingException("Folder " + mName + " is not open.");
1351 private MessagingException ioExceptionHandler(ImapConnection connection, IOException ioe)
1352 throws MessagingException {
1362 return new MessagingException("IO Error", ioe);
1374 public Message createMessage(String uid) throws MessagingException {
1390 public void open() throws IOException, MessagingException {
1427 throw new MessagingException(MessagingException.TLS_REQUIRED);
1471 } catch (MessagingException me) {
1521 public ImapResponse readResponse() throws IOException, MessagingException {
1534 throws MessagingException, IOException {
1544 MessagingException {
1549 throws IOException, MessagingException {
1569 private ImapResponse queryCapabilities() throws IOException, MessagingException {
1578 throw new MessagingException("Invalid CAPABILITY response received");
1590 ImapMessage(String uid, Folder folder) throws MessagingException {
1600 public void parse(InputStream in) throws IOException, MessagingException {
1604 public void setFlagInternal(Flag flag, boolean set) throws MessagingException {
1609 public void setFlag(Flag flag, boolean set) throws MessagingException {
1615 static class ImapException extends MessagingException {