A complete Rails 8 rewrite of the ESM platform with Hotwire, ViewComponents, and modern UI patterns. Five years of Rails experience distilled into what the platform should have been from the start.
# frozen_string_literal: true
module Exceptions
class NotFoundError < StandardError
end
class UnauthorizedError < StandardError
end
class BadRequestError < StandardError
end
class PayloadTooLargeError < StandardError
end
end