Class RegistryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.devmix.process.acto.exceptions.RegistryException
- All Implemented Interfaces:
Serializable
Custom exception class representing a registry-related error in the Active Object pattern implementation.
- Author:
- Sergey Grachev
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionRegistryException(String message) Constructs a newRegistryExceptionwith the specified detail message.RegistryException(String message, Throwable cause) Constructs a newRegistryExceptionwith the specified 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
-
RegistryException
Constructs a newRegistryExceptionwith the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-
RegistryException
Constructs a newRegistryExceptionwith the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this exception's detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method)cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.
-