ilog.rules.brl.syntaxtree
Class IlrNodePathError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ilog.rules.brl.util.IlrBRLError
-
- ilog.rules.brl.syntaxtree.IlrNodePathError
-
- All Implemented Interfaces:
- ilog.rules.data.IlrError, java.io.Serializable
public class IlrNodePathError extends IlrBRLError
An error thrown by
IlrSyntaxTree.getNodeFromPath(String), when the path is incorrect, or not well-formed.- Since:
- JRules 4.5
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description IlrNodePathError(java.lang.String message)Constructs an instance ofIlrNodePathErrorwith an error message.IlrNodePathError(java.lang.String message, java.lang.Object arg)Constructs an instance ofIlrNodePathErrorwith an error message and an argument.IlrNodePathError(java.lang.String message, java.lang.Object[] args)Constructs an instance ofIlrNodePathErrorwith an error message and several arguments.IlrNodePathError(java.lang.String message, java.lang.Object arg1, java.lang.Object arg2)Constructs an instance ofIlrNodePathErrorwith an error message and two arguments.
-
Method Summary
-
Methods inherited from class ilog.rules.brl.util.IlrBRLError
isWarning
-
-
-
-
Constructor Detail
-
IlrNodePathError
public IlrNodePathError(java.lang.String message)
Constructs an instance of
IlrNodePathErrorwith an error message.- Parameters:
message- The error message.
-
IlrNodePathError
public IlrNodePathError(java.lang.String message, java.lang.Object arg)Constructs an instance of
IlrNodePathErrorwith an error message and an argument.- Parameters:
message- The error message.arg- The argument for the error.
-
IlrNodePathError
public IlrNodePathError(java.lang.String message, java.lang.Object arg1, java.lang.Object arg2)Constructs an instance of
IlrNodePathErrorwith an error message and two arguments.- Parameters:
message- The error message.arg1- The first argument for the error.arg2- The second argument for the error.
-
IlrNodePathError
public IlrNodePathError(java.lang.String message, java.lang.Object[] args)Constructs an instance of
IlrNodePathErrorwith an error message and several arguments.- Parameters:
message- The error message.args- The arguments for the error.
-
-