mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-14 05:25:07 -05:00
12d1097a24
approximating AOSP coding standards.
15 lines
366 B
Java
15 lines
366 B
Java
|
|
package com.fsck.k9.mail;
|
|
|
|
public class AuthenticationFailedException extends MessagingException {
|
|
public static final long serialVersionUID = -1;
|
|
|
|
public AuthenticationFailedException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public AuthenticationFailedException(String message, Throwable throwable) {
|
|
super(message, throwable);
|
|
}
|
|
}
|