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

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

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

/**
 * Thrown if the converter was requested to translate a file into a {@link com.documents4j.api.DocumentType} that is
 * does not support.
 */
public class ConversionFormatException extends ConverterException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy