org.drools.spi
Class ConsequenceException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.drools.DroolsException
                    |
                    +--org.drools.FactException
                          |
                          +--org.drools.AssertionException
                                |
                                +--org.drools.spi.ConsequenceException
All Implemented Interfaces:
java.io.Serializable

public class ConsequenceException
extends AssertionException

Indicates an error during a Consequence invokation.

Author:
bob mcwhirter
See Also:
Consequence, Serialized Form

Constructor Summary
ConsequenceException()
          Construct.
ConsequenceException(java.lang.Throwable rootCause)
          Construct with a root cause.
 
Methods inherited from class org.drools.DroolsException
getLocalizedMessage, getMessage, getRootCause, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConsequenceException

public ConsequenceException()
Construct.


ConsequenceException

public ConsequenceException(java.lang.Throwable rootCause)
Construct with a root cause.

Parameters:
rootCause - The root cause of this exception.