|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ExceptionalClosure.java | - | - | - | - |
|
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 |
} |
|
11 |
|
|