mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-14 05:52:52 +00:00
11 lines
246 B
Java
11 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);
|
|
}
|
|
}
|