Sha256: ce00d33d5b3a1ba8f59432c112806a78d7342c1a7cfe896504d97f318207a85b

Contents?: true

Size: 258 Bytes

Versions: 2

Compression:

Stored size: 258 Bytes

Contents

module Pymn
  module ChainOfResponsibility
    class ResponsibilityMethodUndefinedError < Exception
      def initialize method
        super("Responsibility must be called with an existing method. '#{method.to_s}' not defined.")
      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/responsibility_method_undefined_error.rb
pymn-0.0.1 lib/pymn/chain_of_responsibility/responsibility_method_undefined_error.rb