# frozen_string_literal: true module MinatoErrorHandler module Errors class NotAuthorizedError < InternalError def message "you are not allowed to perform this action" end def status_code 403 end end end end