Interface FragileBiProcedure<Argument1,​Argument2,​E extends java.lang.Exception>

  • All Known Subinterfaces:
    BiProcedure<Argument1,​Argument2>

    public interface FragileBiProcedure<Argument1,​Argument2,​E extends java.lang.Exception>
    Functional interface for a void function taking two arguments that can throw a checked Exception.
    • Method Detail

      • process

        void process​(Argument1 argument1,
                     Argument2 argument2)
              throws E extends java.lang.Exception
        Executes the procedure with the given arguments.
        Throws:
        E extends java.lang.Exception