Class ObjectStopException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.devmix.process.acto.exceptions.ObjectStopException
- All Implemented Interfaces:
Serializable
An exception indicating that an object failed to stop due to a blocking condition or external factor.
- Author:
- Sergey Grachev
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionObjectStopException(String message, Object blockedById) Constructs an instance ofObjectStopExceptionwith the specified detail message and the ID of the object that blocked the stop. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ObjectStopException
Constructs an instance ofObjectStopExceptionwith the specified detail message and the ID of the object that blocked the stop.- Parameters:
message- The detail message.blockedById- The ID of the object that blocked the stop.
-