package cs221.groupk.exceptions.database;
import cs221.groupk.exceptions.*;
/**
* UserValidationException is thrown of there is a problem in validating a
* user.
*
* <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P>
*
* @author <A HREF="mailto:[email protected]">Paul Smith</A>
*/
public class UserValidationException extends CliffRailwayException
{
/**
* Default Constructor for Exception UserValidationException.
*/
public UserValidationException()
{
super("There was an error in validating this user.");
}
/**
* Overridden constructor for Exception UserValidationException,
* passing a custom message.
* @param String msg - message passed to super class.
*/
public UserValidationException(String msg)
{
super(msg);
}
}
Page automatically generated on: 28/12/00 at: 7:58:16 PM.