class Safrano::BadRequestSelectInvalidProps

for invalid properti(es) in $select param

Public Class Methods

new(model, iprops) click to toggle source
# File lib/odata/error.rb, line 186
def initialize(model, iprops)
  @msg = ((iprops.size > 1) ? "Bad Request: the $select properties #{iprops.to_a.join(', ')} are invalid for entityset #{model.entity_set_name}" : "Bad Request: the $select property #{iprops.first} is invalid for entityset #{model.entity_set_name}")
end