mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 14:02:49 +00:00
12 lines
246 B
Java
12 lines
246 B
Java
|
package me.impy.aegis.db;
|
||
|
|
||
|
public class DatabaseFileException extends Exception {
|
||
|
public DatabaseFileException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
|
|
||
|
public DatabaseFileException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
}
|