class Pipekit::LabelNotFoundError
Public Class Methods
new(field, id)
click to toggle source
# File lib/pipekit/field_repository.rb, line 45 def initialize(field, id) @field = field @id = id end
Public Instance Methods
message()
click to toggle source
# File lib/pipekit/field_repository.rb, line 50 def message "Could not find label for id: #{@id} with field: #{@field}" end