mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 04:55:04 -05:00
f31b2702a4
Conflicts: src/com/android/email/Email.java
18 lines
374 B
Java
18 lines
374 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);
|
|
}
|
|
}
|