com.gbayer.basicblackjack
Class GameQuitException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.gbayer.basicblackjack.GameQuitException
All Implemented Interfaces:
java.io.Serializable

public class GameQuitException
extends java.lang.Exception

The exception thrown when a user wants to quit BasicBlackJack.

Author:
Greg Bayer
See Also:
Serialized Form

Constructor Summary
GameQuitException()
          Instantiates a new game quit exception.
GameQuitException(java.lang.String message)
          Instantiates a new game quit exception.
GameQuitException(java.lang.String message, java.lang.Throwable cause)
          Instantiates a new game quit exception.
GameQuitException(java.lang.Throwable cause)
          Instantiates a new game quit exception.
 
Method Summary
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GameQuitException

public GameQuitException()
Instantiates a new game quit exception.


GameQuitException

public GameQuitException(java.lang.String message)
Instantiates a new game quit exception.

Parameters:
message - the message

GameQuitException

public GameQuitException(java.lang.Throwable cause)
Instantiates a new game quit exception.

Parameters:
cause - the cause

GameQuitException

public GameQuitException(java.lang.String message,
                         java.lang.Throwable cause)
Instantiates a new game quit exception.

Parameters:
message - the message
cause - the cause