com.almondtools.xrayinterface.ExceptionHandlers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xrayinterface Show documentation
Show all versions of xrayinterface Show documentation
An application to get controlled access to private members of Java classes
The newest version!
package com.almondtools.xrayinterface;
import java.util.function.Function;
public final class ExceptionHandlers {
public static final Function RETURN_NULL = t -> null;
private ExceptionHandlers() {
}
}