org.odpi.openmetadata.fvt.utilities.exceptions.FVTTestFailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fvt-utilities Show documentation
Show all versions of fvt-utilities Show documentation
Common utilities for the FVT Suite.
/* 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;
/**
* FVTTestFailureException is the exception thrown when a test fails.
*/
public class FVTTestFailureException extends Exception
{
private static final long serialVersionUID = 1L;
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 - 2024 Weber Informatics LLC | Privacy Policy