bill.apps.wordutil
Class WordGamesException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--bill.apps.wordutil.WordGamesException
All Implemented Interfaces:
Serializable

public class WordGamesException
extends Exception

Exception class for Word Games processing specific exceptions.

See Also:
Serialized Form

Constructor Summary
WordGamesException()
          Creates an empty WordGamesException.
WordGamesException(String message)
          Creates a WordGamesException with the specified exception message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WordGamesException

public WordGamesException()
Creates an empty WordGamesException.

WordGamesException

public WordGamesException(String message)
Creates a WordGamesException with the specified exception message. The exception message string can later be retrieved by the Throwable.getMessage () method of class java.lang.Throwable.
Parameters:
message - The exception message.