package com.xfestudio.xfeservermanager.core.player;
public final class PlayerOperationException extends RuntimeException {
private static final long serialVersionUID = 1L;
private final String code;
public PlayerOperationException(String code, String message) {
super(message);
this.code = code;
}
public String code() {
return code;
}
}
package com.xfestudio.xfeservermanager.core.player;
public final class PlayerOperationException extends RuntimeException {
private static final long serialVersionUID = 1L;
private final String code;
public PlayerOperationException(String code, String message) {
super(message);
this.code = code;
}
public String code() {
return code;
}
}