class SisRuby::MissingIdError
Public Class Methods
new(id_field_name)
click to toggle source
# File lib/sis_ruby/exceptions/missing_id_error.rb, line 4 def initialize(id_field_name) @id_field_name = id_field_name end
Public Instance Methods
to_s()
click to toggle source
# File lib/sis_ruby/exceptions/missing_id_error.rb, line 8 def to_s "Missing required id field #{@id_field_name}}" end