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

com.chutneytesting.execution.domain.history.ReportNotFoundException Maven / Gradle / Ivy

package com.chutneytesting.execution.domain.history;

@SuppressWarnings("serial")
public class ReportNotFoundException extends RuntimeException {

    public ReportNotFoundException(String scenarioId, Long reportId) {
        super("Unable to find report " + reportId + " of scenario " + scenarioId);
    }

    public ReportNotFoundException(String scenarioId) {
        super("No report available for scenario " + scenarioId);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy