Class InternalErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cz.metacentrum.perun.core.api.exceptions.rt.PerunRuntimeException
cz.metacentrum.perun.core.api.exceptions.InternalErrorException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConsistencyErrorException
,DiacriticNotAllowedException
,IllegalArgumentException
,MaxSizeExceededException
,MembershipMismatchException
,MinSizeExceededException
,ModuleNotExistsException
,ModulePropertyNotFoundException
,NumberNotInRangeException
,NumbersNotAllowedException
,ParserException
,QuotaNotInAllowedLimitException
,RpcException
,SpaceNotAllowedException
,SpecialCharsNotAllowedException
,WrongModuleTypeException
Class representing an exception caused by an unexpected error.
- Author:
- Martin Kuba
- See Also:
-
Constructor Summary
ConstructorDescriptionInternalErrorException
(String message) Simple constructor with a messageInternalErrorException
(String message, Throwable cause) Constructor with a message and Throwable objectInternalErrorException
(Throwable cause) Constructor with a Throwable object -
Method Summary
Methods inherited from class cz.metacentrum.perun.core.api.exceptions.rt.PerunRuntimeException
getErrorId, getMessage, getType
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalErrorException
Simple constructor with a message- Parameters:
message
- message with details about the cause
-
InternalErrorException
Constructor with a message and Throwable object- Parameters:
message
- message with details about the causecause
- Throwable that caused throwing of this exception
-
InternalErrorException
Constructor with a Throwable object- Parameters:
cause
- Throwable that caused throwing of this exception
-