I am looking at Boost StateChart lib documentation, and I am not able to find out a way to catch abnormal events.
For example, if I am in state A, which handles only EventA, and I call
machine.proces_event(EventB())
The event seems to get silently ignored. Is there a way for me to catch those, so I can log the state & the illegal action?
Thank you.