com.github.dreamroute.pdf.util.exception.PdfUtilException Maven / Gradle / Ivy
package com.github.dreamroute.pdf.util.exception;
/**
*
* @author w.dehai
*
*/
public class PdfUtilException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -8936151616002917662L;
public PdfUtilException() {
super();
}
public PdfUtilException(String message) {
super(message);
}
public PdfUtilException(Throwable cause) {
super(cause);
}
public PdfUtilException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy