Class ModuleException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.espirit.firstspirit.server.module.ModuleException
- All Implemented Interfaces:
Serializable
Module related runtime exception.
- Since:
- 5.1.103
- See Also:
-
Constructor Summary
ConstructorDescriptionModuleException
(@NotNull String message) Creates a module exception with the given detail message.ModuleException
(@NotNull String message, @Nullable Throwable cause) Creates a module exception with the given detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ModuleException
Creates a module exception with the given detail message.- Parameters:
message
- detailed information about the exception.- Since:
- 5.1.103
-
ModuleException
Creates a module exception with the given detail message and cause.- Parameters:
message
- detailed information about the exception.cause
- that leads to this exception.- Since:
- 5.1.103
-