# File lib/backup/errors.rb, line 71
      def to_s
        return @to_s if @to_s
        orig_to_s = super()

        if orig_to_s == self.class.to_s
          msg = orig_err_msg ?
              "#{orig_err_class}: #{orig_err_msg}" : orig_err_class
        else
          msg = format_msg(orig_to_s)
          msg << "\n  Reason: #{orig_err_class}" + (orig_err_msg ?
              "\n  #{orig_err_msg}" : ' (no message given)') if @orig_err
        end

        @to_s = msg ? msg_prefix + msg : class_name
      end