Package com.headius.invokebinder.transform

Examples of com.headius.invokebinder.transform.Catch


     * @param throwable the exception type to catch
     * @param function  the function to use for handling the exception
     * @return a new Binder
     */
    public Binder catchException(Class<? extends Throwable> throwable, MethodHandle function) {
        return new Binder(this, new Catch(throwable, function));
    }
View Full Code Here

TOP

Related Classes of com.headius.invokebinder.transform.Catch

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.