Example usage for org.apache.commons.scxml.model ModelException printStackTrace

List of usage examples for org.apache.commons.scxml.model ModelException printStackTrace

Introduction

In this page you can find the example usage for org.apache.commons.scxml.model ModelException printStackTrace.

Prototype

public void printStackTrace() 

Source Link

Document

Prints this throwable and its backtrace to the standard error stream.

Usage

From source file:de.dfki.iui.mmds.dialogue.SiamStateMachine.java

public void step() {
    try {/*from w  ww . j av  a 2 s  . c  om*/
        this.getEngine().triggerEvents(new TriggerEvent[0]);
    } catch (ModelException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}