Sha256: 9627d77a169befb7f11aebd8e87086a1799c9375b117ffdacd239db617f1be6c

Contents?: true

Size: 195 Bytes

Versions: 2

Compression:

Stored size: 195 Bytes

Contents

module Pymn
  module ChainOfResponsibility
    class CommandNotHandledError < Exception
      def initialize(method)
        super("'#{method}' could not be handled")
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pymn-0.0.2 lib/pymn/chain_of_responsibility/command_not_handled_error.rb
pymn-0.0.1 lib/pymn/chain_of_responsibility/command_not_handled_error.rb