Package org.apache.deltaspike.core.api.exception.control.event

Examples of org.apache.deltaspike.core.api.exception.control.event.ExceptionToCatchEvent


    }

    @Test(expected = IllegalArgumentException.class)
    public void assertInboundRethrow()
    {
        bm.fireEvent(new ExceptionToCatchEvent(new IllegalArgumentException()));
    }
View Full Code Here


   *
   * @param t
   *            The throwable to handle
   */
  protected void handleThrowable(Throwable t) {
    catchEvent.fire(new ExceptionToCatchEvent(t));
  }
View Full Code Here

TOP

Related Classes of org.apache.deltaspike.core.api.exception.control.event.ExceptionToCatchEvent

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.