1 package org.oddjob.samples;2 3 import org.oddjob.framework.SimpleJob;4 5 public class ExceptionJob extends SimpleJob {6 7 public int execute() throws Exception {8 9 synchronized (this) {10 this.wait(3000);11 }12 13 throw new Exception ("This is a deliberately naughty job.");14 }15 }16