use of org.kie.workbench.common.stunner.core.client.session.event.OnSessionErrorEvent in project kie-wb-common by kiegroup.
the class ClientSessionManagerImpl method handleCommandError.
@Override
public void handleCommandError(final CommandException ce) {
super.handleCommandError(ce);
sessionErrorEvent.fire(new OnSessionErrorEvent(current, new ClientRuntimeError("Error while executing command.", ce)));
}
use of org.kie.workbench.common.stunner.core.client.session.event.OnSessionErrorEvent in project kie-wb-common by kiegroup.
the class ClientSessionManagerImpl method handleClientError.
@Override
public void handleClientError(final ClientRuntimeError error) {
super.handleClientError(error);
sessionErrorEvent.fire(new OnSessionErrorEvent(current, error));
}
Aggregations