1 package org.oddjob.schedules;2 3 /**4 * An exception to be throw by the Schedule Factory.5 */6 public class ScheduleFactoryException extends RuntimeException {7 8 /**9 * Constructor.10 * 11 * @param msg The message.12 */13 public ScheduleFactoryException(String msg) {14 super(msg);15 }16 17 /**18 * Constructor.19 * 20 * @param msg The message.21 * @param t The cause.22 */23 public ScheduleFactoryException(String msg, Throwable t) {24 super(msg, t);25 }26 27 }28