class Safrano::API::ModelAssociationNameError

when published association was not defined on Sequel level

Public Class Methods

new(klass, symb) click to toggle source
Calls superclass method
# File lib/odata/error.rb, line 34
def initialize(klass, symb)
  symbname = symb.to_s
  msg = "There is no association :#{symbname} defined in class #{klass}"
  super(msg, symbname)
end