# frozen_string_literal: true class ErrorPagesController < ApplicationController def not_found; end def unprocessable_content; end def internal_server_error; end end