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

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

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

/**
 * Thrown if the source file that was provided for a conversion appears to not be of the provided
 * {@link com.documents4j.api.DocumentType}. This means that the input data either represents another file format or
 * the input data is corrupt and cannot be read by the responsible {@link com.documents4j.api.IConverter}.
 */
public class ConversionInputException extends ConverterException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy