package com.qianwen.core.tool.function; import org.springframework.lang.Nullable; @FunctionalInterface public interface CheckedConsumer { @Nullable void accept(@Nullable T t) throws Throwable; }