public class SSNLengthException extends Exception
{
public SSNLengthException()
{
super("SSN Length not exactly 9 Characters");
}
public SSNLengthException(String msg)
{
super(msg);
}
}
Thursday, October 28, 2010
Lab 17 -- Solution -- Class: SSNLengthException
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment