File: multipart_upload_error.rb

package info (click to toggle)
ruby-aws-sdk-s3 1.170.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,740 kB
  • sloc: ruby: 16,388; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Aws
  module S3
    class MultipartUploadError < StandardError

      def initialize(message, errors)
        @errors = errors
        super(message)
      end

      # @return [Array<StandardError>] The list of errors encountered
      #   when uploading or aborting the upload.
      attr_reader :errors

    end
  end
end