/** * This class reports bad input data. * * Copyright: Horstmann, Big Java 3e, Chapter 11 */ public class BadDataException extends Exception { private static final long serialVersionUID = 6464593703216565116L; public BadDataException() { } public BadDataException(String message) { super(message); } }