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

org.odpi.openmetadata.accessservices.subjectarea.fvt.SubjectAreaFVTCheckedException Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.subjectarea.fvt;

/**
 * Test exception for FVT
 */
public class SubjectAreaFVTCheckedException extends Exception
{
    /**
     * This is the typical constructor used for creating a SubjectAreaFVTCheckedException.
     *
     * @param message Error message
     */
    public SubjectAreaFVTCheckedException(String message)
    {
       super(message);
    }


    /**
     * This is the constructor used for creating a SubjectAreaFVTCheckedException that resulted from a previous error.
     *
     * @param message Error message
     * @param e the error that resulted in this exception.
     * */
    public SubjectAreaFVTCheckedException(String message, Exception e)
    {
       super(message,e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy