aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 03:06:40 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-28 03:06:40 +0000
commitfed7d334f2904afc0955a6496859a8779f3d965e (patch)
treec44df1dcf53cac1b72a7703e56a0da750f2d1b33 /activerecord/lib/active_record/associations.rb
parent3e734490c6b3cfa049ec95caa4b8e0bf745976fd (diff)
downloadrails-fed7d334f2904afc0955a6496859a8779f3d965e.tar.gz
rails-fed7d334f2904afc0955a6496859a8779f3d965e.tar.bz2
rails-fed7d334f2904afc0955a6496859a8779f3d965e.zip
Fixed documentation
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4078 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rwxr-xr-xactiverecord/lib/active_record/associations.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index f0f3288937..d1382df7a1 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -9,7 +9,7 @@ require 'active_record/associations/has_and_belongs_to_many_association'
require 'active_record/deprecated_associations'
module ActiveRecord
- class HasManyThroughAssociationNotFoundError < ActiveRecordError
+ class HasManyThroughAssociationNotFoundError < ActiveRecordError #:nodoc:
def initialize(reflection)
@reflection = reflection
end
@@ -19,7 +19,7 @@ module ActiveRecord
end
end
- class HasManyThroughAssociationPolymorphicError < ActiveRecordError
+ class HasManyThroughAssociationPolymorphicError < ActiveRecordError #:nodoc:
def initialize(owner_class_name, reflection, source_reflection)
@owner_class_name = owner_class_name
@reflection = reflection
@@ -31,7 +31,7 @@ module ActiveRecord
end
end
- class HasManyThroughSourceAssociationNotFoundError < ActiveRecordError
+ class HasManyThroughSourceAssociationNotFoundError < ActiveRecordError #:nodoc:
def initialize(reflection)
@reflection = reflection
@through_reflection = reflection.through_reflection
@@ -44,7 +44,7 @@ module ActiveRecord
end
end
- class EagerLoadPolymorphicError < ActiveRecordError
+ class EagerLoadPolymorphicError < ActiveRecordError #:nodoc:
def initialize(reflection)
@reflection = reflection
end