vite.api.exception.ApiError Maven / Gradle / Ivy
The newest version!
package vite.api.exception;
public class ApiError {
private String message;
private String code;
private Error error;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public Error getError() {
return error;
}
public void setError(Error error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy