rsvp.exceptions
Class BogusParameterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by rsvp.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.

Author:
willb
See Also:
Serialized Form

Field Summary
static long serialVersionUID
           
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Constructor Detail

BogusParameterException

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

Parameters:
message -