Home | History | Annotate | Download | only in store

Lines Matching defs:MessagingException

36 import com.android.emailcommon.mail.MessagingException;
91 public static Store newInstance(Account account, Context context) throws MessagingException {
98 private Pop3Store(Context context, Account account) throws MessagingException {
104 throw new MessagingException("Unsupported protocol");
189 * @throws MessagingException if there was some problem with the account
192 public Bundle checkSettings() throws MessagingException {
232 * @throws MessagingException if the account is not going to be useable
234 public Bundle checkSettings() throws MessagingException {
236 int result = MessagingException.NO_ERROR;
251 result = MessagingException.IOERROR;
261 public synchronized void open(OpenMode mode) throws MessagingException {
267 throw new MessagingException("Folder does not exist");
286 throw new MessagingException(MessagingException.TLS_REQUIRED);
293 } catch (MessagingException me) {
304 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
326 throw new MessagingException("POP3 STAT", statException);
388 public Message getMessage(String uid) throws MessagingException {
397 throw new MessagingException("getMessages", ioe);
406 throws MessagingException {
408 throw new MessagingException(String.format("Invalid message set %d %d",
418 throw new MessagingException("getMessages", ioe);
436 * @throws MessagingException
440 throws MessagingException, IOException {
490 throws MessagingException, IOException {
638 * @throws MessagingException
642 throws MessagingException {
662 throw new MessagingException("fetch", ioe);
667 throw new MessagingException("Pop3Store.fetch called with non-Pop3 Message");
697 throw new MessagingException("Unable to fetch message", ioe);
703 MessageRetrievalListener listener) throws IOException, MessagingException {
721 throw new MessagingException(
784 throws IOException, MessagingException {
794 } catch (MessagingException me) {
806 catch (MessagingException me) {
840 throws MessagingException {
858 throw new MessagingException("setFlags()", ioe);
899 catch (MessagingException me) {
915 private String executeSimpleCommand(String command) throws IOException, MessagingException {
929 throws IOException, MessagingException {
939 throw new MessagingException(response);
982 public void parse(InputStream in) throws IOException, MessagingException {
987 public void setFlag(Flag flag, boolean set) throws MessagingException {