forked from MagicBane/Server
Project cleanup pre merge.
This commit is contained in:
@@ -13,26 +13,26 @@ import org.pmw.tinylog.Logger;
|
||||
|
||||
|
||||
public abstract class MBServerException extends Exception {
|
||||
private static final long serialVersionUID = 3878845236025977250L;
|
||||
private static final long serialVersionUID = 3878845236025977250L;
|
||||
|
||||
public MBServerException() {
|
||||
super();
|
||||
}
|
||||
public MBServerException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public MBServerException(String arg0, Throwable arg1) {
|
||||
super(arg0, arg1);
|
||||
}
|
||||
public MBServerException(String arg0, Throwable arg1) {
|
||||
super(arg0, arg1);
|
||||
}
|
||||
|
||||
public MBServerException(String arg0) {
|
||||
super(arg0);
|
||||
}
|
||||
public MBServerException(String arg0) {
|
||||
super(arg0);
|
||||
}
|
||||
|
||||
public MBServerException(Throwable arg0) {
|
||||
super(arg0);
|
||||
}
|
||||
public MBServerException(Throwable arg0) {
|
||||
super(arg0);
|
||||
}
|
||||
|
||||
public void logException(String origin) {
|
||||
Logger.error(origin, this.getClass().getSimpleName() + "(1): " + this.getMessage());
|
||||
public void logException(String origin) {
|
||||
Logger.error(origin, this.getClass().getSimpleName() + "(1): " + this.getMessage());
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user