blob: c68a60804d8e8ac619761c3d99509ebce21c2021 (
plain)
1
2
3
4
5
6
7
8
9
  | 
class ErrorsController < ApplicationController
  def not_found
    render :status => 404, :formats => [:html]
  end
  def server_error
    render :status => 500, :formats => [:html]
  end
end
  |