Sha256: cba64f166750bd28d53b19bb454333c971951309a79e4032941c0b0aaa534c79

Contents?: true

Size: 301 Bytes

Versions: 4

Compression:

Stored size: 301 Bytes

Contents

module Sparrow
  module Utils
    module Exception
      class AbstractMethodError < StandardError
        def initialize(method_name)
          super("The '#{self.class}##{method_name}' is a abstract method. Definition is a subclass responsibility.")
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
leandrosilva-sparrow-1.0.0 lib/utils.rb
leandrosilva-sparrow-1.0.1 lib/utils.rb
leandrosilva-sparrow-1.0.2 lib/utils.rb
leandrosilva-sparrow-1.0.3 lib/utils.rb