mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-27 09:16:08 +00:00
7 lines
170 B
Java
7 lines
170 B
Java
package me.impy.aegis.db;
|
|
|
|
public class DatabaseManagerException extends Exception {
|
|
public DatabaseManagerException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|