ilog.rules.engine
Class IlrUserActionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ilog.rules.engine.IlrUserActionException
-
- All Implemented Interfaces:
- java.io.Serializable
public class IlrUserActionException extends java.lang.ExceptionThis exception is thrown by the methods
IlrContext.send(java.lang.Object)andIlrContext.send(java.lang.String,java.lang.Object). During the execution of the rule engine, a user can explicitly return control to the caller of the rule engine using these methods. An object is attached to this exception and can be used to retrieve the cause or the result of such an exception.
-
-
Constructor Summary
Constructors Constructor and Description IlrUserActionException(java.lang.Object object)Constructs an exception using an object.IlrUserActionException(java.lang.String message, java.lang.Object object)Constructs an exception using a message and an object.
-
Method Summary
Methods Modifier and Type Method and Description java.lang.ObjectgetObject()Gets the objects used to construct this exception.
-
-
-
Constructor Detail
-
IlrUserActionException
public IlrUserActionException(java.lang.Object object)
Constructs an exception using an object.
- Parameters:
object- An object.
-
IlrUserActionException
public IlrUserActionException(java.lang.String message, java.lang.Object object)Constructs an exception using a message and an object.
- Parameters:
message- A message.object- An object.
-
-