mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2025-06-07 18:33:49 -04:00
21 lines
318 B
Java
21 lines
318 B
Java
package ch.spacebase.mc.auth.response;
|
|
|
|
public class Response {
|
|
|
|
private String error;
|
|
private String errorMessage;
|
|
private String cause;
|
|
|
|
public String getError() {
|
|
return this.error;
|
|
}
|
|
|
|
public String getCause() {
|
|
return this.cause;
|
|
}
|
|
|
|
public String getErrorMessage() {
|
|
return this.errorMessage;
|
|
}
|
|
|
|
}
|