![JAR search and dependency download from the Maven repository](/logo.png)
io.tus.java.client.FingerprintNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tus-java-client Show documentation
Show all versions of tus-java-client Show documentation
Java client for tus, the resumable file uploading protocol.
package io.tus.java.client;
/**
* This exception is thrown by {@link TusClient#resumeUpload(TusUpload)} if no upload URL
* has been stored in the {@link TusURLStore}.
*/
public class FingerprintNotFoundException extends Exception {
public FingerprintNotFoundException(String fingerprint) {
super("fingerprint not in storage found: " + fingerprint);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy