org.iges.anagram
Class AnagramException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.iges.util.ChainedException
                    |
                    +--org.iges.anagram.AnagramException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ModuleException

public class AnagramException
extends ChainedException

The base class for all exceptions thrown by Anagram objects.

See Also:
Serialized Form

Constructor Summary
AnagramException()
          Creates an AnagramException with no message
AnagramException(java.lang.String message)
          Creates an AnagramException with the message given
AnagramException(java.lang.String message, java.lang.Throwable cause)
          Creates an AnagramException with the message and cause given
 
Methods inherited from class org.iges.util.ChainedException
getCause, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AnagramException

public AnagramException()
Creates an AnagramException with no message


AnagramException

public AnagramException(java.lang.String message)
Creates an AnagramException with the message given


AnagramException

public AnagramException(java.lang.String message,
                        java.lang.Throwable cause)
Creates an AnagramException with the message and cause given