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