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

org.esigate.xml.ProcessingFailedException Maven / Gradle / Ivy

There is a newer version: 5.3
Show newest version
package org.esigate.xml;

/**
 * Indicates that processing during rendering failed due to some reason.
 * 
 * @author Stanislav Bernatskyi
 */
public class ProcessingFailedException extends RuntimeException {
    private static final long serialVersionUID = -2714936241490746932L;

    public ProcessingFailedException(String message, Throwable cause) {
        super(message + ": " + cause.getMessage(), cause);
    }

    public ProcessingFailedException(String message) {
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy