225226227228229230231232
public void rejectedExecution(Runnable r, ThreadPoolExecutor executor) throws RejectedExecutionException { try { executor.getQueue().put(r); } catch (InterruptedException e) { throw new RejectedExecutionException(e); } }
231232233234235236237238