mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2025-07-09 19:33:59 -04:00
22 lines
318 B
Java
22 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;
|
||
|
}
|
||
|
|
||
|
}
|