org.aarboard.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 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 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));
}
}