Package org.machanism.machai.gw.tools
Class EndTaskException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.machanism.machai.gw.tools.EndTaskException
- All Implemented Interfaces:
Serializable
Exception used to signal the end of a task without terminating the
application.
This exception is typically thrown by function tools to gracefully conclude an interactive session or user-driven task, allowing the application to continue running.
- Author:
- Viktor Tovstyi
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionEndTaskException(String message) Constructs a newEndTaskExceptionwith the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EndTaskException
Constructs a newEndTaskExceptionwith the specified detail message.- Parameters:
message- the detail message describing the reason for ending the task
-