Exception: OpenAPIParser::InvalidEmailFormat
- Inherits:
-
OpenAPIError
- Object
- StandardError
- OpenAPIError
- OpenAPIParser::InvalidEmailFormat
- Defined in:
- lib/openapi_parser/errors.rb
Instance Method Summary collapse
-
#initialize(value, reference) ⇒ InvalidEmailFormat
constructor
A new instance of InvalidEmailFormat.
- #message ⇒ Object
Constructor Details
#initialize(value, reference) ⇒ InvalidEmailFormat
Returns a new instance of InvalidEmailFormat.
199 200 201 202 |
# File 'lib/openapi_parser/errors.rb', line 199 def initialize(value, reference) super(reference) @value = value end |
Instance Method Details
#message ⇒ Object
204 205 206 |
# File 'lib/openapi_parser/errors.rb', line 204 def "#{@reference} email address format does not match value: #{@value.inspect}" end |