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