Sha256: a2349eabec5c783cdb7ebc8949084dde1b1ca82a5c4a001df2572d71f988dc15

Contents?: true

Size: 1.14 KB

Versions: 8

Compression:

Stored size: 1.14 KB

Contents

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


module Google
  module Cloud
    module Firestore
      ##
      # #  BulkWriterException
      #
      # A BulkWriterException object refers to the error that will be thrown
      # in case a BulkWriterOperation fails in all the attempts.
      #
      class BulkWriterException < StandardError
        attr_reader :status
        attr_reader :message
        attr_reader :details

        def initialize status
          @status = status.code
          @message = status.message
          @details = status.details

          super status.message
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
google-cloud-firestore-3.0.0 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.16.1 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.16.0 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.15.1 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.15.0 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.14.0 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.13.1 lib/google/cloud/firestore/bulk_writer_exception.rb
google-cloud-firestore-2.13.0 lib/google/cloud/firestore/bulk_writer_exception.rb