예외: Mongoid::Errors::MixedClientConfiguration

상속:
MongoidError
  • 객체
모두 표시
다음에 정의됨:
lib/mongoid/errors/mixed_client_configuration.rb

개요

이 오류는 클라이언트 구성에 uri 및 기타 표준 옵션이 모두 포함되어 있을 때 발생합니다.

상수 요약

MongoidError에서 상속된 상수

Mongoid::Errors::MongoidError::BASE_KEY

인스턴스 속성 요약

MongoidError에서 상속된 속성

#problem, #Resolution, #summary

인스턴스 메서드 요약 접기

MongoidError에서 상속된 메서드

#compose_message

생성자 세부 정보

#initialize(name, config) ⇒ MixedClientConfiguration

오류를 초기화합니다.

예시:

오류를 초기화합니다.

MixedClientConfiguration.new(:name, {})

매개변수:

  • 이름 (기호)

    클라이언트 구성의 이름입니다.

  • config (해시)

    구성 옵션입니다.



18
19
20
21
22
23
24
25
# 파일 'lib/mongoid/errors/mixed_client_configuration.rb', 줄 18

def 초기화(이름, config)
  super(
    Compose_message(
      "mixed_client_configuration",
      { 이름: 이름, config: config }
    )
  )
end