package simulator; /** * CustomerReadException - A class of exception that is thrown * when an error is encountered while reading the customer file. * @author Alex Thornton * */ public class CustomerReadException extends Exception { public CustomerReadException(String message) { super(message); } }