class ValidationProfiler::Exceptions::FieldNotFound

Public Class Methods

new(field) click to toggle source
# File lib/validation_profiler/exceptions/field_not_found.rb, line 5
def initialize(field)
  @field = field
end

Public Instance Methods

to_s() click to toggle source
# File lib/validation_profiler/exceptions/field_not_found.rb, line 9
def to_s
  field = @field
  "Field: #{field} could not be found."
end