All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zalando.fauxpas.ThrowingConsumer Maven / Gradle / Ivy

The newest version!
package org.zalando.fauxpas;

import lombok.SneakyThrows;
import org.apiguardian.api.API;

import java.util.function.Consumer;

import static org.apiguardian.api.API.Status.STABLE;

@API(status = STABLE)
@FunctionalInterface
public interface ThrowingConsumer extends Consumer {

    void tryAccept(T t) throws X;

    @Override
    @SneakyThrows
    default void accept(final T t) {
        tryAccept(t);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy