异常:Mongo::Error::InvalidFile

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

Overview

在确认 GridFS 写入时,如果文件 md 5和服务器 md 5不匹配,则触发该警报。

由于:

  • 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 (client_md 5 , server_md 5 ) ⇒ InvalidFile

创建新的异常。

例子:

创建新的异常。

Mongo::Error::InvalidFile.new(file_md5, server_md5)

参数:

  • client_md 5 ( string )

    客户端文件 md 5 .

  • server_md5 ( string )

    服务器端文件 md 5 .

由于:

  • 2.0.0



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

def 初始化(client_md 5, server_md5)
  ("客户端的文件 MD 5为#{ client_md 5 } ,但服务器报告为#{ server_md 5 }  ")
end