Exception: OpenAPIParser::InvalidEmailFormat

Inherits:
OpenAPIError
  • Object
show all
Defined in:
lib/openapi_parser/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(value, reference) ⇒ InvalidEmailFormat

Returns a new instance of InvalidEmailFormat.



171
172
173
174
# File 'lib/openapi_parser/errors.rb', line 171

def initialize(value, reference)
  super(reference)
  @value = value
end

Instance Method Details

#messageObject



176
177
178
# File 'lib/openapi_parser/errors.rb', line 176

def message
  "#{@reference} email address format does not match value: #{@value}"
end