src/main/java/org/apache/bsf/util/BSFEventProcessorReturningEventInfos.java [89:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void processEvent(final String inFilter, final Object[] evtInfo) {
        try {
            processExceptionableEvent(inFilter, evtInfo);
        } catch (final RuntimeException re) {
            // rethrow this .. I don't want to intercept run-time stuff
            // that can in fact occur legit
            throw re;
        } catch (final Exception e) {
            // should not occur
            System.err.println("BSFError: non-exceptionable event delivery " + "threw exception (that's not nice): " + e);
            e.printStackTrace();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/bsf/util/BSFEventProcessor.java [61:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void processEvent(final String inFilter, final Object[] evtInfo) {
        try {
            processExceptionableEvent(inFilter, evtInfo);
        } catch (final RuntimeException re) {
            // rethrow this .. I don't want to intercept run-time stuff
            // that can in fact occur legit
            throw re;
        } catch (final Exception e) {
            // should not occur
            System.err.println("BSFError: non-exceptionable event delivery " + "threw exception (that's not nice): " + e);
            e.printStackTrace();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



