Home | History | Annotate | Download | only in store

Lines Matching defs:MessagingException

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 {
123 * @throws MessagingException if there was some problem with the account
126 public Bundle checkSettings() throws MessagingException {
166 * @throws MessagingException if the account is not going to be useable
168 public Bundle checkSettings() throws MessagingException {
170 int result = MessagingException.NO_ERROR;
184 result = MessagingException.IOERROR;
193 public synchronized void open(OpenMode mode) throws MessagingException {
199 throw new MessagingException("Folder does not exist");
218 throw new MessagingException(MessagingException.TLS_REQUIRED);
225 } catch (MessagingException me) {
236 throw new MessagingException(MessagingException.IOERROR, ioe.toString());
248 } catch (MessagingException me) {
260 throw new MessagingException("POP3 STAT", statException);
322 public Message getMessage(String uid) throws MessagingException {
331 throw new MessagingException("getMessages", ioe);
340 throws MessagingException {
346 MessageRetrievalListener listener) throws MessagingException {
351 throws MessagingException {
359 throw new MessagingException("getMessages", ioe);
376 * @throws MessagingException
380 throws MessagingException, IOException {
538 * @throws MessagingException
542 throws MessagingException {
559 EOLConvertingInputStream.Callback callback) throws IOException, MessagingException {
570 } catch (MessagingException me) {
574 } catch (MessagingException e) {
609 catch (MessagingException me) {
641 public void deleteMessage(Message message) throws MessagingException {
648 throws MessagingException {
664 } catch (MessagingException e) {
674 throw new MessagingException("setFlags()", ioe);
695 catch (MessagingException me) {
711 private String executeSimpleCommand(String command) throws IOException, MessagingException {
725 throws IOException, MessagingException {
735 throw new MessagingException(response);
778 public void parse(InputStream in) throws IOException, MessagingException {
783 public void setFlag(Flag flag, boolean set) throws MessagingException {