# frozen_string_literal: true # Gestiona las excepciones que lanzamos desde los controladores module ExceptionHandler extend ActiveSupport::Concern class SiteNotFound < StandardError; end included do rescue_from SiteNotFound, with: :site_not_found end def site_not_found redirect_to sites_path end end