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

org.daisy.pipeline.braille.common.TransformationException Maven / Gradle / Ivy

The newest version!
package org.daisy.pipeline.braille.common;

@SuppressWarnings("serial")
public class TransformationException extends RuntimeException {
	
	public TransformationException(String message) {
		super(message);
	}
	
	public TransformationException(Throwable throwable) {
		super(throwable);
	}
	
	public TransformationException(String message, Throwable throwable) {
		super(message, throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy