![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.webdav.exceptions.LockFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdav-servlet Show documentation
Show all versions of webdav-servlet Show documentation
... a servlet that brings easy WebDAV access to any store, only 1 interface needs to be implemented
The newest version!
package net.sf.webdav.exceptions;
public class LockFailedException extends WebdavException {
public LockFailedException() {
super();
}
public LockFailedException(String message) {
super(message);
}
public LockFailedException(String message, Throwable cause) {
super(message, cause);
}
public LockFailedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy