2003/11/29 03:06:09
[org.ibex.core.git] / src / org / xwt / Scheduler.java
index cecdee8..1f57fe7 100644 (file)
@@ -11,7 +11,7 @@ public class Scheduler {
     // Public API Exposed to org.xwt /////////////////////////////////////////////////
 
     private static Scheduler singleton;
-    public static abstract class Task { public abstract void perform(); }
+    public static abstract class Task { public abstract void perform() throws Exception; }
     public static void add(Task t) { singleton.runnable.append(t); }
     public static void init() {
         if (singleton != null) return;