io.github.robothy.sdwebui.sdk.exceptions.SdWebuiBadRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdwebui-java-sdk Show documentation
Show all versions of sdwebui-java-sdk Show documentation
Stable Diffusion Web UI Java SDK
The newest version!
package io.github.robothy.sdwebui.sdk.exceptions;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
@EqualsAndHashCode(callSuper = true)
@AllArgsConstructor
@NoArgsConstructor
@Data
public class SdWebuiBadRequestException extends SdWebuiServerException {
@JsonProperty("error")
private String error;
@JsonProperty("detail")
private String detail;
@JsonProperty("body")
private String body;
@JsonProperty("errors")
private String errors;
// getters and setters
}