package untitled3; public class exception { public exception() { } // Create SSNCharacterException class public class SSNCharacterException extends Exception { public SSNCharacterException(/*Some parameters here*/) { super(); // Calls Exception constructor /* Show what she or he just entered, told why it is inappropriate, and asked to reenter the data */ ... } } // Create SSNLengthException class public class SSNLengthException extends Exception { ... } // Create Employee class public class Employee extends Person { private double salary; private String SSN; ... } }