2008-11-01 21:32:06 +00:00
|
|
|
|
2009-12-15 02:50:53 +00:00
|
|
|
package com.fsck.k9.mail;
|
2008-11-01 21:32:06 +00:00
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public class AuthenticationFailedException extends MessagingException {
|
2008-11-01 21:32:06 +00:00
|
|
|
public static final long serialVersionUID = -1;
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public AuthenticationFailedException(String message) {
|
2008-11-01 21:32:06 +00:00
|
|
|
super(message);
|
|
|
|
}
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public AuthenticationFailedException(String message, Throwable throwable) {
|
2008-11-01 21:32:06 +00:00
|
|
|
super(message, throwable);
|
|
|
|
}
|
|
|
|
}
|