br.com.anteros.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 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 NextCloudApiException extends RuntimeException {
private static final long serialVersionUID = 8088239559973590632L;
public NextCloudApiException(Throwable cause) {
super(cause);
}
public NextCloudApiException(String message) {
super(message);
}
}