me.desair.tus.server.upload.disk.StoragePathNotAvailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tus-java-server Show documentation
Show all versions of tus-java-server Show documentation
Server-side implementation of the open file upload protocol tus (https://tus.io/)
that supports resumable file uploads for small and very large files
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);
}
}