org.spigotmc.SneakyThrow Maven / Gradle / Ivy
package org.spigotmc;
public class SneakyThrow {
public static void sneaky(Throwable t) {
throw SneakyThrow.superSneaky(t);
}
private static T superSneaky(Throwable t) throws T {
throw (T) t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy