mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 13:05:03 -05:00
22 lines
502 B
Java
22 lines
502 B
Java
package com.fsck.k9.preferences;
|
|
|
|
public class SettingsImportExportException extends Exception {
|
|
|
|
public SettingsImportExportException() {
|
|
super();
|
|
}
|
|
|
|
public SettingsImportExportException(String detailMessage, Throwable throwable) {
|
|
super(detailMessage, throwable);
|
|
}
|
|
|
|
public SettingsImportExportException(String detailMessage) {
|
|
super(detailMessage);
|
|
}
|
|
|
|
public SettingsImportExportException(Throwable throwable) {
|
|
super(throwable);
|
|
}
|
|
|
|
}
|