mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-14 05:25:07 -05:00
12d1097a24
approximating AOSP coding standards.
37 lines
852 B
Java
37 lines
852 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
public class MessagingException extends Exception {
|
|
public static final long serialVersionUID = -1;
|
|
|
|
boolean permanentFailure = false;
|
|
|
|
public MessagingException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public MessagingException(String message, boolean perm) {
|
|
super(message);
|
|
permanentFailure = perm;
|
|
}
|
|
|
|
public MessagingException(String message, Throwable throwable) {
|
|
super(message, throwable);
|
|
}
|
|
|
|
public MessagingException(String message, boolean perm, Throwable throwable) {
|
|
super(message, throwable);
|
|
permanentFailure = perm;
|
|
}
|
|
|
|
public boolean isPermanentFailure() {
|
|
return permanentFailure;
|
|
}
|
|
|
|
public void setPermanentFailure(boolean permanentFailure) {
|
|
this.permanentFailure = permanentFailure;
|
|
}
|
|
|
|
|
|
}
|