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

io.cortical.retina.rest.ApiException Maven / Gradle / Ivy

Go to download

cortical.io's java client - a simple java http client which simplifies communication between any java application and the Retina server using the Retina's REST API.

There is a newer version: 1.0.2
Show newest version
/*******************************************************************************
 * Copyright (c) cortical.io GmbH. All rights reserved.
 *  
 * This software is confidential and proprietary information.
 * You shall use it only in accordance with the terms of the
 * license agreement you entered into with cortical.io GmbH.
 ******************************************************************************/
package io.cortical.retina.rest;
/** Generated. **/
public class ApiException extends Exception {
    /** Serial vers */
    private static final long serialVersionUID = 1L;
    int code = 0;
    String message = null;
    /** Generated. **/
    public ApiException() {}

    public ApiException(int code, String message) {
        this.code = code;
        this.message = message;
    }
    /** Generated. **/
    public int getCode() {
        return code;
    }
    /** Generated. **/
    public void setCode(int code) {
        this.code = code;
    }
    /** Generated. **/
    public String getMessage() {
        return message;
    }
    /** Generated. **/
    public void setMessage(String message) {
        this.message = message;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy