Package de.uni_kiel.rz.fdr.repl.error
Class InsufficientAccessRightsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.uni_kiel.rz.fdr.repl.error.InsufficientAccessRightsException
- All Implemented Interfaces:
Serializable
Thrown when cau-repl does not proper access rights in the JVM.
You probably need to add
--add-opens 'java.base/java.lang=ALL-UNNAMED'
to your java parameters.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Contains the instructions for fixing this error condition. -
Constructor Summary
ConstructorsConstructorDescriptionInsufficientAccessRightsException
(String message) Create a new instance of the exceptionInsufficientAccessRightsException
(String message, Throwable cause) Create a new instance of the exception -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
explanation
Contains the instructions for fixing this error condition.- See Also:
-
-
Constructor Details
-
InsufficientAccessRightsException
Create a new instance of the exception- Parameters:
message
- The message.
-
InsufficientAccessRightsException
Create a new instance of the exception- Parameters:
message
- The message.cause
- The cause.
-