Sha256: 5305cab8fe17a400c60fc4ca451834c56ca9f574565ea2bcd58efe1ae071fbc7
Contents?: true
Size: 284 Bytes
Versions: 31
Compression:
Stored size: 284 Bytes
Contents
module StateMachine # An error occurred during a state machine invocation class Error < StandardError # The object that failed attr_reader :object def initialize(object, message = nil) #:nodoc: @object = object super(message) end end end
Version data entries
31 entries across 31 versions & 10 rubygems