I get an error when new creating a new class in a Rails Controller.
How can I understand what's happening here? Thanks
Error:
NoMethodError in MystudentsController#new
undefined method `attribute_method_matcher' for nil:NilClass  
Rails.root: E:/Nam 4 HK 1/TT CNPM/workspace/lab2
app/controllers/mystudents_controller.rb:27:in `new'
app/controllers/mystudents_controller.rb:27:in `new'
And this is function new in mystudent_controller.rb file:
def new    
  @mystudent = Mystudent.new
  respond_to do |format|
    format.html # new.html.erb
    format.xml  { render :xml => @mystudents }
  end
end
 
     
     
    