KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > schedules > ScheduleFactoryException


1 package org.oddjob.schedules;
2
3 /**
4  * An exception to be throw by the Schedule Factory.
5  */

6 public class ScheduleFactoryException extends RuntimeException JavaDoc {
7
8     /**
9      * Constructor.
10      *
11      * @param msg The message.
12      */

13     public ScheduleFactoryException(String JavaDoc 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 JavaDoc msg, Throwable JavaDoc t) {
24         super(msg, t);
25     }
26     
27 }
28
Popular Tags