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

org.liblouis.TranslationException Maven / Gradle / Ivy

Go to download

JNA based Java bindings to liblouis, an open-source braille translator and back-translator.

There is a newer version: 5.1.0
Show newest version
package org.liblouis;

public class TranslationException extends Exception {
	
	public TranslationException(String message) {
		super(message);
	}
	
	public TranslationException(Throwable throwable) {
		super(throwable);
	}
	
	public TranslationException(String message, Throwable throwable) {
		super(message, throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy