Exception: ForeignKeySetError
- Inherits:
-
ResolveJoinReferenceError
- Object
- RuntimeError
- JoinFixError
- ResolveJoinReferenceError
- ForeignKeySetError
- Defined in:
- lib/joinfix/error.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from ResolveJoinReferenceError
Attributes inherited from JoinFixError
Instance Method Summary collapse
Methods inherited from ResolveJoinReferenceError
Methods inherited from JoinFixError
Constructor Details
This class inherits a constructor from ResolveJoinReferenceError
Instance Method Details
#advice ⇒ Object
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/joinfix/error.rb', line 142 def advice %Q{ This error occurs when you specifiy the foreign key, as well as a join entry. --- poem: title: Poetry of Departures author_id: 8 author: larkin If you need to specify the foreign key, do so within the entry. --- poem: title: Poetry of Departures author: larkin: id: 8} end |