Class ExceptionClosure<E>
- java.lang.Object
 - 
- org.apache.commons.collections4.functors.ExceptionClosure<E>
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,Closure<E>
public final class ExceptionClosure<E> extends java.lang.Object implements Closure<E>, java.io.Serializable
Closure implementation that always throws an exception.- Since:
 - 3.0
 - See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <E> Closure<E>exceptionClosure()Factory returning the singleton instance.voidexecute(E input)Always throw an exception. 
 - 
 
- 
- 
Field Detail
- 
INSTANCE
public static final Closure INSTANCE
Singleton predicate instance 
 - 
 
- 
Method Detail
- 
exceptionClosure
public static <E> Closure<E> exceptionClosure()
Factory returning the singleton instance.- Type Parameters:
 E- the type that the closure acts on- Returns:
 - the singleton instance
 - Since:
 - 3.1
 
 
- 
execute
public void execute(E input)
Always throw an exception.- Specified by:
 executein interfaceClosure<E>- Parameters:
 input- the input object- Throws:
 FunctorException- always
 
 - 
 
 -