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

net.customware.confluence.reporting.ContextException Maven / Gradle / Ivy

package net.customware.confluence.reporting;

/**
 * This is thrown when a report is being run in an unsupported context. Most reports can be run anywhere
 * as long as they are given sufficient detail about where to start.
 */
public class ContextException extends ReportException {

    public ContextException() {
        super();
    }

    public ContextException( String message, Throwable cause ) {
        super( message, cause );
    }

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

    public ContextException( Throwable cause ) {
        super( cause );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy