org.odpi.openmetadata.accessservices.subjectarea.fvt.SubjectAreaFVTCheckedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subject-area-fvt Show documentation
Show all versions of subject-area-fvt Show documentation
FVT resources for the Subject Area Open Metadata Access Service (OMAS).
/* 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);
}
}