org.aarboard.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 nextcloud-api Show documentation
Show all versions of nextcloud-api Show documentation
Java api library to access nextcloud features from java applications
The newest version!
package org.aarboard.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));
}
}