Package org.kuali.rice.krms.api.engine
Class TermResolutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.kuali.rice.core.api.exception.RiceRuntimeException
org.kuali.rice.krms.api.engine.TermResolutionException
- All Implemented Interfaces:
Serializable
public class TermResolutionException
extends org.kuali.rice.core.api.exception.RiceRuntimeException
An Exception for
TermResolver exceptions.- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTermResolutionException(String message, TermResolver<?> tr, Map<String, String> parameters) Create a TermResolutionException with the given valuesTermResolutionException(String message, TermResolver<?> tr, Map<String, String> parameters, Throwable cause) Create a TermResolutionException with the given values -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
termResolverClassName
-
outputTerm
-
prereqs
-
parameterNames
-
parameters
-
-
Constructor Details
-
TermResolutionException
public TermResolutionException(String message, TermResolver<?> tr, Map<String, String> parameters, Throwable cause) Create a TermResolutionException with the given values- Parameters:
message- the exception messagetr-TermResolverto use to set values to if not nullparameters- to set the parameters value to if not nullcause- the root Throwable cause.
-
TermResolutionException
Create a TermResolutionException with the given values- Parameters:
message- the exception messagetr-TermResolverto use to set values to if not nullparameters- to set the parameters value to if not null
-