All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cohere.api.core.ApiError Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
/**
 * 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 + "}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy