Files
wevads-platform/app/api/java/tech/iresponse/exceptions/DatabaseException.java
2026-02-26 04:53:11 +01:00

25 lines
615 B
Java
Executable File

/*
* Decompiled with CFR 0.152.
*/
package tech.iresponse.exceptions;
public class DatabaseException
extends Exception {
public DatabaseException(String message) {
super(message);
}
public DatabaseException(String message, Throwable paramThrowable) {
super(message, paramThrowable);
}
public DatabaseException(Throwable paramThrowable) {
super(paramThrowable);
}
public DatabaseException(String message, Throwable paramThrowable, boolean paramBoolean1, boolean paramBoolean2) {
super(message, paramThrowable, paramBoolean1, paramBoolean2);
}
}