package eu.eudat.logic.utilities.interfaces; /** * Created by ikalyvas on 2/25/2019. */ public interface CheckedSupplier { T get() throws Exception; }