Interface ThrowingConsumer<T,​E extends java.lang.Exception>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ThrowingConsumer<T,​E extends java.lang.Exception>
    This functional interface is designed as a workaround for methods that will throw exceptions and reported by Veracode as CWE 601 and 113
    Since:
    MicroStrategy Web 11.3.4
    • Method Detail

      • accept

        void accept​(T t)
             throws E extends java.lang.Exception
        Throws:
        E extends java.lang.Exception