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

io.pinecone.exceptions.FailedRequestInfo Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package io.pinecone.exceptions;

public class FailedRequestInfo {
    private final int status;
    private final String message;

    public FailedRequestInfo(int status, String message) {
        this.status = status;
        this.message = message;
    }

    public int getStatus() {
        return status;
    }

    public String getMessage() {
        return message;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy