Lets say I have a model topic, and it has one moderator. I want to build a new post for a topic. 
In my controller:
@topic = Topic.find(:id)
@moderator = @topic.moderator.build # error points to this line
Error:
undefined method `build' for nil:NilClass
 
     
     
    