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

package com.hypixel.fastutil.util;

public class SneakyThrow
{
    public static RuntimeException sneakyThrow(final Throwable t) {
        if (t == null) {
            throw new NullPointerException("t");
        }
        return sneakyThrow0(t);
    }
    
    private static <T extends Throwable> T sneakyThrow0(final Throwable t) throws T, Throwable {
        throw t;
    }
}
