revisionlogic
Class InconsistencyException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byrevisionlogic.InconsistencyException
All Implemented Interfaces:
java.io.Serializable

public class InconsistencyException
extends java.lang.Exception

InconsistencyException is an inconsistency error message. It is thrown when a sentence is itself inconsistent or is mutually inconsistent with another set of sentences.

Author:
Daphne Liu, daphnel@sfu.ca
See Also:
Serialized Form

Field Summary
 java.lang.String s
          A reference to the inconsistency error message.
 
Fields inherited from class java.lang.Exception
 
Constructor Summary
InconsistencyException(java.lang.String message)
          Constructs a new InconsistencyException.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

s

public java.lang.String s
A reference to the inconsistency error message.

Constructor Detail

InconsistencyException

public InconsistencyException(java.lang.String message)
Constructs a new InconsistencyException.

Parameters:
message - a reference to the inconsistency error message.