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

com.github.dreamroute.pdf.util.exception.PdfUtilException Maven / Gradle / Ivy

There is a newer version: 1.3.4-RELEASE
Show newest version
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