class Mealy::UnexpectedTokenError
Error indicating that there is no transition from the current state with the token read.
Public Class Methods
new(state, on)
click to toggle source
Calls superclass method
# File lib/mealy.rb, line 12 def initialize(state, on) super("FSM error #{self.class} in state #{state.inspect} reading #{on}") end