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

me.desair.tus.server.upload.disk.StoragePathNotAvailableException Maven / Gradle / Ivy

Go to download

Server-side implementation of the open file upload protocol tus (https://tus.io/) that supports resumable file uploads for small and very large files

There is a newer version: 1.0.0-3.0
Show newest version
package me.desair.tus.server.upload.disk;

/**
 * Exception thrown when the disk storage path cannot be read or created.
 */
public class StoragePathNotAvailableException extends RuntimeException {
    public StoragePathNotAvailableException(String message, Throwable e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy