异常:Mongo::Error::InvalidURI
- 继承:
-
Mongo::Error
- 对象
- StandardError
- Mongo::Error
- Mongo::Error::InvalidURI
- 定义于:
- build/Ruby-driver-v 2.19 /lib/mongo/error/invalid_uri.rb
Overview
尝试解析与规范不匹配的 URI 时引发的异常。
常量摘要
从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
实例方法摘要折叠
从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 (uri, Details, format = nil) ⇒ InvalidURI
实例化新异常。
33 34 35 36 37 38 39 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/error/invalid_uri.rb', 第33行 def 初始化(uri, 详情, format = nil) = "错误 URI: #{ uri } \n " + " #{ Details } \n " += " MongoDB URI 必须采用以下格式: #{ format } \n " if format += "请参阅以下URL以获取更多信息: #{ mongo :: URI :: HELP } \n " 超() end |