Skip to content

Instantly share code, notes, and snippets.

View codingtony's full-sized avatar

Tony Bussières codingtony

View GitHub Profile
// Code licensed under the Apache License v2.0 http://www.apache.org/licenses/LICENSE-2.0
public class AnyThrow {
public static RuntimeException uncheked(Throwable e) {
AnyThrow.<RuntimeException>throwAny(e);
return null;
}
@SuppressWarnings("unchecked")