edu.umbc.cs.daml4jess
Class D4jException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--edu.umbc.cs.daml4jess.D4jException
All Implemented Interfaces:
java.io.Serializable

public class D4jException
extends java.lang.Exception

daml4jess exception.

See Also:
Serialized Form

Constructor Summary
D4jException(java.lang.String message)
          Constructs an exception with the given message.
D4jException(java.lang.String msg, java.lang.Throwable t)
          Constructs an exception the given a message and causing throwable.
 
Method Summary
 java.lang.Throwable getCause()
          Get the deeper cause of the exception.
 java.lang.String getMessage()
          Get the exception message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

D4jException

public D4jException(java.lang.String msg,
                    java.lang.Throwable t)
Constructs an exception the given a message and causing throwable.


D4jException

public D4jException(java.lang.String message)
Constructs an exception with the given message.

Parameters:
message - The message explaining what happened.
Method Detail

getCause

public java.lang.Throwable getCause()
Get the deeper cause of the exception. If there is no deeper cause, return null.

Overrides:
getCause in class java.lang.Throwable

getMessage

public java.lang.String getMessage()
Get the exception message.

Overrides:
getMessage in class java.lang.Throwable