![JAR search and dependency download from the Maven repository](/logo.png)
org.odpi.openmetadata.fvt.utilities.exceptions.FVTTestFailureException Maven / Gradle / Ivy
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.fvt.utilities.exceptions;
import org.odpi.openmetadata.fvt.utilities.FVTResults;
import java.io.Serial;
/**
* FVTTestFailureException is the exception thrown when a test fails.
*/
public class FVTTestFailureException extends Exception
{
@Serial
private static final long serialVersionUID = 1L;
/**
* Results
*/
private final FVTResults results;
/**
* Simple constructor
*
* @param results details of the test failure
*/
public FVTTestFailureException(FVTResults results)
{
this.results = results;
}
@Override
public String toString()
{
return "FVTTestFailureException{" +
"results=" + results +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy