Package com.atlassian.crowd.exception
Class ObjectNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.atlassian.crowd.exception.CrowdException
com.atlassian.crowd.exception.ObjectNotFoundException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ApplicationNotFoundException
,DirectoryMappingNotFoundException
,GroupNotFoundException
,MembershipNotFoundException
,UserNotFoundException
,WebhookNotFoundException
Thrown when an entity is not found.
- See Also:
-
Constructor Summary
ConstructorDescriptionObjectNotFoundException
(Class entityClass, Object identifier) ObjectNotFoundException
(String message) Constructs a new exception with the specified detail message.ObjectNotFoundException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ObjectNotFoundException
(Throwable throwable) Default constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ObjectNotFoundException
public ObjectNotFoundException() -
ObjectNotFoundException
-
ObjectNotFoundException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
ObjectNotFoundException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
ObjectNotFoundException
Default constructor.- Parameters:
throwable
- TheException
.
-