All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.tus.java.client.FingerprintNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
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