blather.exceptions
Class BogusParameterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by blather.exceptions.BogusParameterException
All Implemented Interfaces:
java.io.Serializable

public class BogusParameterException
extends java.lang.RuntimeException

The BogusParameterException provides a mechanism for the controller to signal to the view that some parameter it supplied is invalid. Of course, in a perfect world, the view would be coded defensively and would validate its own data. However, the controller is still responsible for ensuring the consistency of supplied data.

See Also:
Serialized Form

Constructor Summary
BogusParameterException(java.lang.String message)
          Constructs a new BogusParameterException with a given explanation.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BogusParameterException

public BogusParameterException(java.lang.String message)
Constructs a new BogusParameterException with a given explanation.

Parameters:
message -