8 lines
173 B
Ruby
8 lines
173 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class ErrorPagesController < ApplicationController
|
||
|
|
def not_found; end
|
||
|
|
def unprocessable_content; end
|
||
|
|
def internal_server_error; end
|
||
|
|
end
|