summaryrefslogtreecommitdiff
path: root/app/controllers/errors_controller.rb
blob: 6c659e6d231923de77d53b8e9dec6a29269052da (plain)
1
2
3
4
5
6
7
8
9
10
# We render http errors ourselves so we can customize them
class ErrorsController < ApplicationController
  # 404
  def not_found
  end

  # 500
  def server_error
  end
end