Searched refs:exceptionSupplier (Results 1 – 4 of 4) sorted by relevance
181 public<X extends Throwable> int orElseThrow(Supplier<X> exceptionSupplier) throws X { in orElseThrow() argument185 throw exceptionSupplier.get(); in orElseThrow()
181 public<X extends Throwable> long orElseThrow(Supplier<X> exceptionSupplier) throws X { in orElseThrow() argument185 throw exceptionSupplier.get(); in orElseThrow()
181 public<X extends Throwable> double orElseThrow(Supplier<X> exceptionSupplier) throws X { in orElseThrow() argument185 throw exceptionSupplier.get(); in orElseThrow()
282 public <X extends Throwable> T orElseThrow(Supplier<? extends X> exceptionSupplier) throws X { in orElseThrow() argument286 throw exceptionSupplier.get(); in orElseThrow()