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

org.daisy.dotify.api.translator.TranslationException Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.daisy.dotify.api.translator;

/**
 * Provides an exception indicating a translation problem.
 *
 * @author Joel Håkansson
 */
public class TranslationException extends Exception {

    /**
     *
     */
    private static final long serialVersionUID = -1834392372293939932L;

    protected TranslationException() {
        super();
    }

    protected TranslationException(String message, Throwable cause) {
        super(message, cause);
    }

    protected TranslationException(String message) {
        super(message);
    }

    protected TranslationException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy