rubyforgood/casa

View on GitHub
app/controllers/error_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class ErrorController < ApplicationController
  skip_before_action :authenticate_user!

  def index
    raise StandardError.new "This is an intentional test exception"
  end
end