mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
(cherry picked from commit 4bbee1dddba0504bd2edb0a7915d66fdeae66fba) IJ-MR-20326 GitOrigin-RevId: c2c0b8fd40a16689ef61f73135b2144a4cbc742d
8 lines
284 B
Java
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;
|
|
}
|