com.cohere.api.core.ApiError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cohere-java Show documentation
Show all versions of cohere-java Show documentation
The official Java library for Cohere's API.
/**
* This file was auto-generated by Fern from our API Definition.
*/
package com.cohere.api.core;
public final class ApiError extends RuntimeException {
private final int statusCode;
private final Object body;
public ApiError(int statusCode, Object body) {
this.statusCode = statusCode;
this.body = body;
}
public int statusCode() {
return this.statusCode;
}
public Object body() {
return this.body;
}
@java.lang.Override
public String toString() {
return "ApiError{" + "statusCode: " + statusCode + ", body: " + body + "}";
}
}