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

name.remal.io.FileLockingException Maven / Gradle / Ivy

There is a newer version: 1.26.147
Show newest version
package name.remal.io;

import java.io.IOException;

public class FileLockingException extends IOException {

    private static final long serialVersionUID = 0;

    public FileLockingException() {
    }

    public FileLockingException(String message) {
        super(message);
    }

    public FileLockingException(String message, Throwable cause) {
        super(message, cause);
    }

    public FileLockingException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy