Class Mongo::Error::UnsupportedArrayFilters
In: lib/mongo/error/unsupported_array_filters.rb
Parent: Error

Raised if the array filters option is specified for an operation but the server selected does not support array filters.

@since 2.5.0

Methods

new  

Constants

DEFAULT_MESSAGE = "The array_filters option is not a supported feature of the server handling this operation. " + "Operation results may be unexpected.".freeze   The default error message describing that array filters are not supported.

@return [ String ] A default message describing that array filters are not supported by the server.

@since 2.5.0

UNACKNOWLEDGED_WRITES_MESSAGE = "The array_filters option cannot be specified when using unacknowledged writes. " + "Either remove the array_filters option or use acknowledged writes (w >= 1).".freeze   The error message describing that array filters cannot be used when write concern is unacknowledged.

@return [ String ] A message describing that array filters cannot be used when write concern is unacknowledged.

@since 2.5.0

Public Class methods

Create the new exception.

@example Create the new exception.

  Mongo::Error::UnsupportedArrayFilters.new

@since 2.5.0

[Validate]