class Rworkflow::StateError
Attributes
name[R]
Public Class Methods
new(name)
click to toggle source
# File lib/rworkflow/state_error.rb, line 5 def initialize(name) @name = name end
Public Instance Methods
message()
click to toggle source
# File lib/rworkflow/state_error.rb, line 9 def message return "#{@name} state does not exist" end