me.desair.tus.server.exception.UploadAlreadyLockedException 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.exception;
public class UploadAlreadyLockedException extends TusException {
public UploadAlreadyLockedException(String message) {
// 423 is LOCKED (WebDAV rfc 4918)
super(423, message);
}
}