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

com.documents4j.throwables.FileSystemInteractionException Maven / Gradle / Ivy

There is a newer version: 1.1.12
Show newest version
package com.documents4j.throwables;

/**
 * This exception is thrown when a file on the file system cannot be read or written or when
 * a script file cannot be executed. Usually, this is a wrapper for an {@link java.io.IOException}.
 */
public class FileSystemInteractionException extends ConverterException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy