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