model
Class IllegalCellException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by model.IllegalCellException
All Implemented Interfaces:
java.io.Serializable

public class IllegalCellException
extends java.lang.RuntimeException

This class describes the error that occurs when an illegal cell is passed as parameter.

See Also:
Serialized Form

Constructor Summary
IllegalCellException()
          constructor: Raises a new IllegalCellException.
IllegalCellException(java.lang.String s)
          constructor: Raises a new IllegalCellException.
 
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

IllegalCellException

public IllegalCellException()
constructor: Raises a new IllegalCellException.
postcondition: Creates a new IllegalException.


IllegalCellException

public IllegalCellException(java.lang.String s)
constructor: Raises a new IllegalCellException. Displays on the output the parameter String.
postcondition: Creates a new IllegalCellException and displays the input string on the output.

Parameters:
s - The String message to display.