package untitled3; public class SSNLengthException extends Exception { public SSNLengthException(String SSN) { super(); System.out.println("You entered: " +SSN); System.out.println("Please enter 9 digits"); } }