异常:Mongo::Error::ServerNotUsable
- 继承:
-
Mongo::Error
- 对象
- StandardError
- Mongo::Error
- Mongo::Error::ServerNotUsable
- 定义于:
- 构建/ruby-driver-v2.19/lib/ mongo /error/server_not_usable.rb
Overview
如果尝试使用未知服务器进行操作,则会引发异常。
常量摘要
从Mongo::Error继承的常量
BAD_VALUE 、 Code 、 CURSOR_NOT_FOUND 、 ERR 、 ERRMSG 、 ERROR 、 TRANSIENT_TRANSACTION_ERROR_LABEL 、 UNKNOWN_ERROR 、 UNKNOWN_TRANSACTION_COMMIT_RESULT_LABEL 、 WRITE_CONCERN_ERROR 、 WRITE_CONCERN_ERRORS 、 WRITE_ERRORS
实例属性摘要
包含在Notable中的属性
#connection_global_id 、 #Generation 、 #service_id
实例方法摘要折叠
-
#initialize (解决) ⇒ ServerNotUsable
构造函数
private
实例化新异常。
从Mongo::Error继承的方法
#change_stream_resumable? , #write_concern_error_label? , #write_concern_error_labels
ChangeStreamResumable中包含的方法
WriteRetryable 中包含的方法
Labelable 中包含的方法
#add_label , #label? , #labels
Notable中包含的方法
#add_note 、 #add_notes 、 #notes 、 #to_s
构造函数详情
#initialize (address) ⇒ ServerNotUsable
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
实例化新异常。
30 31 32 33 |
# File ' 构建/ruby-driver-v2.19/lib/ mongo /error/server_not_usable.rb', 第30行 def 初始化(地址) @address = 地址 超("尝试使用服务器#{ 解决 }的未知服务器") end |