mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 19:49:11 +03:00
21 lines
587 B
Java
21 lines
587 B
Java
package ru.gravit.utils;
|
|
|
|
public class HookException extends RuntimeException {
|
|
private static final long serialVersionUID = -529141998961943161L;
|
|
|
|
public HookException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public HookException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public HookException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
public HookException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
|
}
|
|
}
|