2019-05-03 17:34:10 +03:00
|
|
|
package ru.gravit.utils;
|
|
|
|
|
|
|
|
public class HookException extends RuntimeException {
|
2019-05-03 23:10:35 +03:00
|
|
|
private static final long serialVersionUID = -529141998961943161L;
|
2019-05-03 17:34:10 +03:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|