1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
k-9/src/com/fsck/k9/mail/store/UnavailableAccountException.java
Jesse Vincent 12d1097a24 Big, scary massive "ant astyle" to get us back to something
approximating AOSP coding standards.
2011-02-06 17:09:48 -05:00

43 lines
936 B
Java

package com.fsck.k9.mail.store;
import com.fsck.k9.Account;
/**
* An {@link Account} is not
* {@link Account#isAvailable(android.content.Context)}.<br/>
* The operation may be retried later.
*/
public class UnavailableAccountException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -1827283277120501465L;
public UnavailableAccountException() {
super("please try again later");
}
/**
* @param detailMessage
* @param throwable
*/
public UnavailableAccountException(String detailMessage, Throwable throwable) {
super(detailMessage, throwable);
}
/**
* @param detailMessage
*/
public UnavailableAccountException(String detailMessage) {
super(detailMessage);
}
/**
* @param throwable
*/
public UnavailableAccountException(Throwable throwable) {
super(throwable);
}
}