# frozen_string_literal: true module MinatoErrorHandler module Errors class InternalError < MinatoError def message "An internal error has occurred! See more details in caused_by field." end def status_code 500 end end end end