Index: src/java/org/quartz/JobExecutionException.java =================================================================== --- src/java/org/quartz/JobExecutionException.java (revision 656) +++ src/java/org/quartz/JobExecutionException.java (working copy) @@ -155,6 +155,10 @@ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + public void setRefireImmediately(boolean refire) { + this.refire = refire; + } + public boolean refireImmediately() { return refire; } Index: examples/src/java/org/quartz/examples/example6/BadJob1.java =================================================================== --- examples/src/java/org/quartz/examples/example6/BadJob1.java (revision 656) +++ examples/src/java/org/quartz/examples/example6/BadJob1.java (working copy) @@ -68,11 +68,11 @@ JobExecutionException e2 = new JobExecutionException(e); // this job will refire immediately - e2.refireImmediately(); + e2.setRefireImmediately(true); throw e2; } _log.info("---" + jobName + " completed at " + new Date()); } -} \ No newline at end of file +}