Files
openide/aether-dependency-resolver/src/org/jetbrains/idea/maven/aether/ThrowingSupplier.java
Vladislav Yaroshchuk bcc925993f [aether-resolver] IJI-781 Create base classes for retries injection
(cherry picked from commit 4bbee1dddba0504bd2edb0a7915d66fdeae66fba)

IJ-MR-20326

GitOrigin-RevId: c2c0b8fd40a16689ef61f73135b2144a4cbc742d
2022-02-18 09:11:32 +00:00

8 lines
284 B
Java

// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.idea.maven.aether;
@FunctionalInterface
interface ThrowingSupplier<R> {
R get() throws Exception;
}