异常:Mongo::Error::InvalidReplacementDocument

继承:
Mongo::Error
  • 对象
显示全部
定义于:
build/Ruby-driver-v 2.19 /lib/mongo/error/invalid_replacement_document.rb

Overview

如果对象不是有效的替换文档,则引发异常。

由于:

  • 2.0.0

常量摘要折叠

MESSAGE =
已弃用。

错误消息。

由于:

  • 2.0.0

提供的替换文档无效.冻结

Mongo::Error继承的常量

BAD_VALUECodeCURSOR_NOT_FOUNDERRERRMSGERRORTRANSIENT_TRANSACTION_ERROR_LABELUNKNOWN_ERRORUNKNOWN_TRANSACTION_COMMIT_RESULT_LABELWRITE_CONCERN_ERRORWRITE_CONCERN_ERRORSWRITE_ERRORS

实例属性摘要

包含在Notable中的属性

#connection_global_id#Generation#service_id

类方法摘要折叠

实例方法摘要折叠

Mongo::Error继承的方法

#change_stream_resumable? , #write_concern_error_label? , #write_concern_error_labels

ChangeStreamResumable中包含的方法

#change_stream_resumable?

WriteRetryable 中包含的方法

#write_retryable?

Labelable 中包含的方法

#add_label , #label? , #labels

Notable中包含的方法

#add_note#add_notes#notes#to_s

构造函数详情

#initialize (key: nil) ⇒ InvalidReplacementDocument

实例化新异常。

参数:

  • :key ( string )

    无效的密钥。

由于:

  • 2.0.0



55
56
57
# File ' 构建/ruby-driver-v2.19/lib/ mongo /error/invalid_replacement_document.rb', 第55行

def 初始化(键: nil)
  (self.class.message(key))
end

类方法详细信息

message (key) ⇒ string

此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。

构建错误消息。

参数:

  • key ( string )

    无效的密钥。

返回:

  • ( string )

    错误消息。

由于:

  • 2.0.0



36
37
38
39
40
# File ' 构建/ruby-driver-v2.19/lib/ mongo /error/invalid_replacement_document.rb', 第36行

def self.message(key)
  message = "提供的替换文档无效。替换文档"
  message += "不得包含原子修饰符。\" #{ key } \" 键无效。 "
  message
end

warn (logger, key) ⇒对象

此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。

发送并缓存警告。

由于:

  • 2.0.0



45
46
47
48
49
50
# File ' 构建/ruby-driver-v2.19/lib/ mongo /error/invalid_replacement_document.rb', 第45行

def self.WARN(记录器, key)
  @warned ||= 开始
    记录器.WARN(message(key))
    true
  end
end