The unexpected heart of the ESM ecosystem. What started as a simple Rails dashboard has evolved into the command center for thousands of gaming communities, proving that sometimes the best infrastructure projects are the ones you never planned to build.
# frozen_string_literal: true
module Exceptions
class NotFoundError < StandardError
end
class UnauthorizedError < StandardError
end
class BadRequestError < StandardError
end
class PayloadTooLargeError < StandardError
end
end