# frozen_string_literal: true module MinatoErrorHandler module Errors class NetworkError < MinatoErrorHandler::Errors::MinatoError attr_accessor :response def message "A network error has occurred!" end def status_code 503 end end end end