public void onRuntimeError()

in src/main/java/com/revo/deployr/rbroker/example/service/FraudService.java [259:267]


    public void onRuntimeError(Throwable throwable) {
        /*
         * In case of an unexpected runtime error from the RBroker
         * runtime broadcast an alert message.
         */
        String cause = throwable.getMessage();
        String msg = "RBrokerListener Event: " + cause;
        alertClient(msg, cause, true);
    }