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