![JAR search and dependency download from the Maven repository](/logo.png)
dk.apaq.printing.core.PrinterException Maven / Gradle / Ivy
package dk.apaq.printing.core;
/**
*
* @author michaelzachariassenkrog
*/
public class PrinterException extends RuntimeException {
public PrinterException(String message) {
super(message);
}
public PrinterException(String message, Throwable cause) {
super(message, cause);
}
public PrinterException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy