Package org.forgerock.api
Class DuplicateDescriptionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.forgerock.api.DuplicateDescriptionException
-
- All Implemented Interfaces:
Serializable
public class DuplicateDescriptionException extends RuntimeException
An exception that is used when trying to merge multiple descriptors but a duplicate is detected.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateDescriptionException(Version version)
Construct a new exception for the given version with an unknown path.DuplicateDescriptionException(Version version, String path)
Construct a new exception for the given path and version.DuplicateDescriptionException(Version version, String path, Throwable cause)
Construct a new exception for the given path and version.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DuplicateDescriptionException
public DuplicateDescriptionException(Version version, String path)
Construct a new exception for the given path and version.- Parameters:
version
- The version.path
- The path.
-
DuplicateDescriptionException
public DuplicateDescriptionException(Version version, String path, Throwable cause)
Construct a new exception for the given path and version.- Parameters:
version
- The version.path
- The path.cause
- The cause.
-
DuplicateDescriptionException
public DuplicateDescriptionException(Version version)
Construct a new exception for the given version with an unknown path.- Parameters:
version
- The version.
-
-