mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 03:55:04 -05:00
33 lines
841 B
Java
33 lines
841 B
Java
|
package com.fsck.k9.mail.store;
|
||
|
|
||
|
import com.fsck.k9.mail.MessagingException;
|
||
|
|
||
|
public class UnavailableStorageException extends MessagingException
|
||
|
{
|
||
|
|
||
|
private static final long serialVersionUID = 1348267375054620792L;
|
||
|
|
||
|
public UnavailableStorageException(String message)
|
||
|
{
|
||
|
// consider this exception as a permanent failure by default
|
||
|
this(message, true);
|
||
|
}
|
||
|
|
||
|
public UnavailableStorageException(String message, boolean perm)
|
||
|
{
|
||
|
super(message, perm);
|
||
|
}
|
||
|
|
||
|
public UnavailableStorageException(String message, Throwable throwable)
|
||
|
{
|
||
|
// consider this exception as permanent failure by default
|
||
|
this(message, true, throwable);
|
||
|
}
|
||
|
|
||
|
public UnavailableStorageException(String message, boolean perm, Throwable throwable)
|
||
|
{
|
||
|
super(message, perm, throwable);
|
||
|
}
|
||
|
|
||
|
}
|