package dslab; /** * CheckedConsumer. */ @FunctionalInterface public interface CheckedConsumer { void accept(T socket) throws E; }