Home | History | Annotate | Download | only in src

Lines Matching defs:handler

148     System.out.println("Handler: " + iae + ", Arg1: " + arg1 + ", Arg2: " + arg2 + ", ExMsg: " + exMsg);
153 System.out.println("Handler: " + iae + ", Arg1: " + arg1);
162 MethodHandle handler = MethodHandles.lookup().findStatic(Main.class,
168 handler);
180 // which in turn means that the handler must be called for the next two invokes.
186 handler = MethodHandles.lookup().findStatic(Main.class,
190 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler);
200 handler = MethodHandles.lookup().findVirtual(IllegalArgumentException.class,
202 adapter = MethodHandles.catchException(target, IllegalArgumentException.class, handler);
211 handler);