异常:Mongo::Error::CryptError

继承:
Mongo::Error
  • 对象
显示全部
定义于:
构建/ruby-driver-v2.19/lib/ mongo /error/crypt_error.rb

Overview

与客户端加密相关的错误。

由于:

  • 2.0.0

直接已知子类

KmsErrorMongocryptdSpawnError

常量摘要

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(message, code: nil) ⇒ CryptError

创建一个新的 CryptError

参数:

  • 代码 ( Integer | nil ) (默认为: nil

    可选的 libmongocrypt 错误代码

  • message ( string )

    错误消息

由于:

  • 2.0.0



27
28
29
30
31
# File 'build/Ruby-driver-v 2.19 /lib/mongo/error/crypt_error.rb', 第27行

def 初始化(message, 代码: nil)
  msg = message
  msg += " (libmongocrypt error code #{ code } ) " if 代码
  (msg)
end