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

com.overops.report.service.ReportGeneratorException Maven / Gradle / Ivy

package com.overops.report.service;

/**
 * Generic exception to throw for this integration project
 */
public class ReportGeneratorException extends RuntimeException {

	private static final long serialVersionUID = 1371433862659956717L;
	
	public ReportGeneratorException(String message) {
        super(message);
    }

    public ReportGeneratorException(String message, Throwable throwable) {
        super(message, throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy