public void testHandleException() throws BSFException {
logger1.info("handleException");
BSFManager manager = new BSFManager();
JRubyEngine instance = new JRubyEngine();
instance.initialize(manager, "jruby", null);
BSFException bsfExcptn = new BSFException(BSFException.REASON_EXECUTION_ERROR, "test", new NullPointerException());
instance.handleException(bsfExcptn);
}