001 package railo.runtime.schedule; 002 003 004 /** 005 * Scheduler Exception 006 */ 007 public final class ScheduleException extends Exception { 008 009 /** 010 * constructor of the class 011 * @param message 012 */ 013 public ScheduleException(String message) { 014 super(message); 015 } 016 017 }