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

org.odpi.openmetadata.fvt.utilities.exceptions.FVTTestFailureException Maven / Gradle / Ivy

There is a newer version: 5.1
Show newest version
/* 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