
org.johnnei.enjin.internal.ResponseError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enjin-api-impl Show documentation
Show all versions of enjin-api-impl Show documentation
The specification of the Enjin API
The newest version!
package org.johnnei.enjin.internal;
public class ResponseError extends EnjinWrapper {
private EnjinError error;
public ResponseError() {
// Used in GSON
}
/**
* Used in tests to construct mocked results
* @param error
*/
public ResponseError(EnjinError error) {
this.error = error;
}
public EnjinError getError() {
return error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy