// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.sneakythrow.consumer;

import com.hypixel.hytale.sneakythrow.SneakyThrow;
import java.util.function.IntConsumer;

@FunctionalInterface
public interface ThrowableIntConsumer<E extends Throwable> extends IntConsumer
{
    default void accept(final int t) {
        try {
            this.acceptNow(t);
        }
        catch (final Throwable e) {
            throw SneakyThrow.sneakyThrow(e);
        }
    }
    
    void acceptNow(final int p0) throws E, Throwable;
}
