org.aarboard.nextcloud.api.exception.NextcloudApiException 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 NextcloudApiException extends RuntimeException {
private static final long serialVersionUID = 8088239559973590632L;
public NextcloudApiException(Throwable cause) {
super(cause);
}
public NextcloudApiException(String message) {
super(message);
}
}