Sha256: bd1803d6894cb178d60ca4f95a28c80c5ab4b632948a2798f0f73efbd4948906
Contents?: true
Size: 259 Bytes
Versions: 60
Compression:
Stored size: 259 Bytes
Contents
module Para class BaseException < StandardError; end class ComponentNotFound < BaseException attr_accessor :type def initialize(type) @type = type end def message "Component not found for type : #{ type }" end end end
Version data entries
60 entries across 60 versions & 1 rubygems