mongodb/mongoid

View on GitHub
lib/mongoid/errors/transactions_not_supported.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
# rubocop:todo all

module Mongoid
  module Errors

    # This error is raised when a transaction is attempted to be used with a model whose client cannot use it since
    # the mongodb deployment doesn't support transactions.
    class TransactionsNotSupported < MongoidError

      # Create the error.
      def initialize
        super('transactions_not_supported')
      end
    end
  end
end