1 package com.diasparsoftware.java.util; 2 3 4 /*** 5 * A <code>Closure</code> whose <code>execute</code> 6 * method might throw an exception. 7 */ 8 public interface ExceptionalClosure { 9 Object execute(Object parameters) throws Exception; 10 }