Class UnrecognizedGUIDException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.odpi.openmetadata.frameworks.connectors.ffdc.OCFCheckedExceptionBase
-
- org.odpi.openmetadata.commonservices.ffdc.exceptions.OMAGCheckedExceptionBase
-
- org.odpi.openmetadata.accessservices.subjectarea.ffdc.exceptions.SubjectAreaCheckedException
-
- org.odpi.openmetadata.accessservices.subjectarea.ffdc.exceptions.GuidOrientatedException
-
- org.odpi.openmetadata.accessservices.subjectarea.ffdc.exceptions.UnrecognizedGUIDException
-
- All Implemented Interfaces:
Serializable
public class UnrecognizedGUIDException extends GuidOrientatedException
The UnrecognizedGUIDException is thrown by the Subject Area OMAS when the unique identifier (guid) used to request an object is either unrecognized, or is the identifier for a different type of object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnrecognizedGUIDException(ExceptionMessageDefinition messageDefinition, String className, String actionDescription, Exception caughtError, String guid)This is the constructor used for creating an UnrecognizedGUIDException when an unexpected error has been caught.UnrecognizedGUIDException(ExceptionMessageDefinition messageDefinition, String className, String actionDescription, String guid)This is the typical constructor used for creating an UnrecognizedGUIDException
-
Method Summary
-
Methods inherited from class org.odpi.openmetadata.accessservices.subjectarea.ffdc.exceptions.GuidOrientatedException
getGuid
-
Methods inherited from class org.odpi.openmetadata.commonservices.ffdc.exceptions.OMAGCheckedExceptionBase
toString
-
Methods inherited from class org.odpi.openmetadata.frameworks.connectors.ffdc.OCFCheckedExceptionBase
equals, getErrorMessage, getRelatedProperties, getReportedCaughtException, getReportedCaughtExceptionClassName, getReportedErrorMessage, getReportedErrorMessageId, getReportedErrorMessageParameters, getReportedHTTPCode, getReportedSystemAction, getReportedUserAction, getReportingActionDescription, getReportingClassName, hashCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
UnrecognizedGUIDException
public UnrecognizedGUIDException(ExceptionMessageDefinition messageDefinition, String className, String actionDescription, String guid)
This is the typical constructor used for creating an UnrecognizedGUIDException- Parameters:
messageDefinition- content of the messageclassName- name of class reporting erroractionDescription- description of function it was performing when error detectedguid- unrecognised guid
-
UnrecognizedGUIDException
public UnrecognizedGUIDException(ExceptionMessageDefinition messageDefinition, String className, String actionDescription, Exception caughtError, String guid)
This is the constructor used for creating an UnrecognizedGUIDException when an unexpected error has been caught. The properties allow additional information to be associated with the exception.- Parameters:
messageDefinition- content of the messageclassName- name of class reporting erroractionDescription- description of function it was performing when error detectedcaughtError- previous error causing this exceptionguid- unrecognised guid
-
-