Class EntityNotExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
cz.metacentrum.perun.core.api.exceptions.PerunException
cz.metacentrum.perun.core.api.exceptions.EntityNotExistsException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ActionTypeNotExistsException
,AttributeNotExistsException
,BanNotExistsException
,CandidateNotExistsException
,ConsentHubNotExistsException
,ConsentNotExistsException
,DestinationNotExistsException
,ExtSourceNotExistsException
,FacilityNotExistsException
,GroupNotExistsException
,HostNotExistsException
,MemberNotExistsException
,OwnerNotExistsException
,ResourceNotExistsException
,ResourceTagNotExistsException
,SecurityTeamNotExistsException
,ServiceNotExistsException
,ServicesPackageNotExistsException
,SubjectNotExistsException
,UserExtSourceNotExistsException
,UserNotExistsException
,VoNotExistsException
It represents parent class for *NotExistsException classes.
- Author:
- Slavek Licehammer
- See Also:
-
Constructor Summary
ConstructorDescriptionEntityNotExistsException
(String message) Simple constructor with a messageEntityNotExistsException
(String message, Throwable cause) Constructor with a message and Throwable objectConstructor with a Throwable object -
Method Summary
Methods inherited from class cz.metacentrum.perun.core.api.exceptions.PerunException
getErrorId, getFriendlyMessageTemplate, getMessage, getName, setErrorId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EntityNotExistsException
Simple constructor with a message- Parameters:
message
- message with details about the cause
-
EntityNotExistsException
Constructor with a message and Throwable object- Parameters:
message
- message with details about the causecause
- Throwable that caused throwing of this exception
-
EntityNotExistsException
Constructor with a Throwable object- Parameters:
cause
- Throwable that caused throwing of this exception
-