Class: Mongo::Error::FailedStringPrepValidation
- Inherits:
-
Error
- Object
- Error
- Mongo::Error::FailedStringPrepValidation
- Defined in:
- lib/mongo/error/failed_string_prep_validation.rb
Overview
This exception is raised when stringprep validation fails, such as due to character being present or bidirectional data being invalid.
Constant Summary collapse
- INVALID_BIDIRECTIONAL =
The error message describing failed bidi validation.
'Data failed bidirectional validation'- PROHIBITED_CHARACTER =
The error message describing the discovery of a prohibited character.
'Data contains a prohibited character.'- UNABLE_TO_NORMALIZE =
The error message describing that stringprep normalization can't be done on Ruby versions below 2.2.0.
'Unable to perform normalization with Ruby versions below 2.2.0'
Instance Method Summary collapse
-
#initialize(msg) ⇒ FailedStringPrepValidation
constructor
Create the new exception.
Constructor Details
#initialize(msg) ⇒ FailedStringPrepValidation
Create the new exception.
35 36 37 |
# File 'lib/mongo/error/failed_string_prep_validation.rb', line 35 def initialize(msg) super end |