异常:Mongo::Error::InvalidApplicationName

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

Overview

当元数据文档发送到服务器时,会引发此异常

at the time of a connection handshake is invalid.

由于:

  • 2.4.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 (app_name, max_size) ⇒ InvalidApplicationName

实例化新异常。

例子:

创建异常。

InvalidApplicationName.new(app_name, 128)

参数:

  • app_name ( string )

    应用程序名称选项。

  • max_size ( Integer )

    应用程序名称的最大字节大小。

由于:

  • 2.4.0



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

def 初始化(app_name, max_size)
  ("提供的应用程序名称 ' #{ app_name } ' 不能超过#{ max_size }字节。 ")
end