package untitled3; // Create SSNCharacterException class public class SSNCharacterException extends Exception { public SSNCharacterException(String SSN) { super(); System.out.println("You Entered: "+SSN); System.out.println("Please enter 9 digits"); // Calls Exception constructor /* Show what she or he just entered, told why it is inappropriate, and asked to reenter the data */ } }