com.webank.wedatasphere.dss.common.exception.ThrowingSupplier Maven / Gradle / Ivy
The newest version!
package com.webank.wedatasphere.dss.common.exception;
/**
* @author enjoyyin
* @date 2022-07-20
* @since 1.1.1
*/
@FunctionalInterface
public interface ThrowingSupplier {
T get() throws E;
}