io.cortical.retina.rest.ApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retina-api-java-sdk Show documentation
Show all versions of retina-api-java-sdk Show documentation
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.
/*******************************************************************************
* 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