Class ExceptionClosure<T>

  • Type Parameters:
    T - the type of the input to the operation.
    All Implemented Interfaces:
    java.io.Serializable, java.util.function.Consumer<T>, Closure<T>

    public final class ExceptionClosure<T>
    extends java.lang.Object
    implements Closure<T>, java.io.Serializable
    Closure implementation that always throws an exception.
    Since:
    3.0
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static Closure INSTANCE
      Singleton predicate instance
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> Closure<T> exceptionClosure()
      Factory returning the singleton instance.
      void execute​(T input)
      Always throw an exception.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.apache.commons.collections4.Closure

        accept
      • Methods inherited from interface java.util.function.Consumer

        andThen
    • Field Detail

      • INSTANCE

        public static final Closure INSTANCE
        Singleton predicate instance
    • Method Detail

      • exceptionClosure

        public static <T> Closure<T> exceptionClosure()
        Factory returning the singleton instance.
        Type Parameters:
        T - the type of the input to the operation.
        Returns:
        the singleton instance
        Since:
        3.1