org.liblouis.CompilationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liblouis-java Show documentation
Show all versions of liblouis-java Show documentation
JNA based Java bindings to liblouis, an open-source braille translator and back-translator.
package org.liblouis;
@SuppressWarnings("serial")
public class CompilationException extends Exception {
public CompilationException(String message) {
super(message);
}
public CompilationException(Throwable throwable) {
super(throwable);
}
public CompilationException(String message, Throwable throwable) {
super(message, throwable);
}
}