fr.w3blog.zpl.model.ZebraPrintNotFoundException Maven / Gradle / Ivy
package fr.w3blog.zpl.model;
/**
* Exception throwed when printer cannot be found
*
* @author ttropard
*
*/
public class ZebraPrintNotFoundException extends ZebraPrintException {
/**
*
*/
private static final long serialVersionUID = 1L;
public ZebraPrintNotFoundException(String message) {
super(message);
}
public ZebraPrintNotFoundException(String message, Throwable t) {
super(message, t);
}
}