# frozen_string_literal: true module MinatoErrorHandler module Errors class NotAuthenticatedError < InternalError def message "not authenticated" end def status_code 401 end end end end