class Para::ComponentNotFound

Attributes

type[RW]

Public Class Methods

new(type) click to toggle source
# File lib/para/errors.rb, line 7
def initialize(type)
  @type = type
end

Public Instance Methods

message() click to toggle source
# File lib/para/errors.rb, line 11
def message
  "Component not found for type : #{ type }"
end