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

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

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

/**
 * A general exception thrown by the methods in {@link com.documents4j.api.IConverter}.
 * This exception is the common subclass of more specialized exceptions. All exceptions thrown
 * by the {@link com.documents4j.api.IConverter} are unchecked.
 * 

 

* Note: Be aware that exception precedence is not specified. For example, when an unreachable * converter is asked to convert an inexistent file, this might either result in a * {@link FileSystemInteractionException} or in a {@link ConverterAccessException}, depending on the * converter implementation. * * @see ConversionInputException * @see ConverterAccessException * @see FileSystemInteractionException */ public class ConverterException extends RuntimeException { public ConverterException(String message) { super(message); } public ConverterException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy