Home | History | Annotate | Download | only in store

Lines Matching defs:MessagingException

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;
262 public synchronized void open(OpenMode mode) throws MessagingException {
268 throw new MessagingException("Folder does not exist");
287 throw new MessagingException(MessagingException.TLS_REQUIRED);
294 } catch (MessagingException me) {
305 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
327 throw new MessagingException("POP3 STAT", statException);
389 public Message getMessage(String uid) throws MessagingException {
398 throw new MessagingException("getMessages", ioe);
407 throws MessagingException {
409 throw new MessagingException(String.format("Invalid message set %d %d",
419 throw new MessagingException("getMessages", ioe);
437 * @throws MessagingException
441 throws MessagingException, IOException {
491 throws MessagingException, IOException {
639 * @throws MessagingException
643 throws MessagingException {
663 throw new MessagingException("fetch", ioe);
668 throw new MessagingException("Pop3Store.fetch called with non-Pop3 Message");
698 throw new MessagingException("Unable to fetch message", ioe);
704 MessageRetrievalListener listener) throws IOException, MessagingException {
722 throw new MessagingException(
785 throws IOException, MessagingException {
796 } catch (MessagingException me) {
800 } catch (MessagingException e) {
813 catch (MessagingException me) {
847 throws MessagingException {
863 } catch (MessagingException e) {
873 throw new MessagingException("setFlags()", ioe);
914 catch (MessagingException me) {
930 private String executeSimpleCommand(String command) throws IOException, MessagingException {
944 throws IOException, MessagingException {
954 throw new MessagingException(response);
997 public void parse(InputStream in) throws IOException, MessagingException {
1002 public void setFlag(Flag flag, boolean set) throws MessagingException {