br.com.anteros.nextcloud.api.exception.MoreThanOneShareFoundException 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 MoreThanOneShareFoundException extends NextcloudApiException {
private static final long serialVersionUID = 5654006062204752474L;
public MoreThanOneShareFoundException(int shareId) {
super(String.format("More than one share found, not possible <%d>", shareId));
}
}