br.com.anteros.nextcloud.api.exception.NextcloudOperationFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-NextCloud Show documentation
Show all versions of Anteros-NextCloud Show documentation
Anteros NextCloud for Java.
package br.com.anteros.nextcloud.api.exception;
public class NextcloudOperationFailedException extends NextcloudApiException {
private static final long serialVersionUID = 6382478664807826933L;
public NextcloudOperationFailedException(int statuscode, String message) {
super(String.format("Nextcloud API call failed with statuscode %d and message \"%s\"", statuscode, message));
}
}