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

me.desair.tus.server.exception.UploadAlreadyLockedException 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.exception;

public class UploadAlreadyLockedException extends TusException {
    public UploadAlreadyLockedException(String message) {
        // 423 is LOCKED (WebDAV rfc 4918)
        super(423, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy