We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ffad5 commit 274ca0eCopy full SHA for 274ca0e
src/main/java/edu/ie3/datamodel/utils/Try.java
@@ -8,7 +8,6 @@
8
import static java.util.stream.Collectors.partitioningBy;
9
10
import edu.ie3.datamodel.exceptions.FailureException;
11
-import edu.ie3.datamodel.exceptions.SourceException;
12
import edu.ie3.datamodel.exceptions.TryException;
13
import java.util.*;
14
import java.util.function.BiFunction;
@@ -639,7 +638,7 @@ public int hashCode() {
639
638
*/
640
@FunctionalInterface
641
public interface TrySupplier<T, E extends Exception> {
642
- T get() throws E, SourceException;
+ T get() throws E;
643
}
644
645
/**
0 commit comments