Exception: OpenAPIParser::InvalidDateFormat

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

Instance Method Summary collapse

Constructor Details

#initialize(value, reference) ⇒ InvalidDateFormat

Returns a new instance of InvalidDateFormat.



193
194
195
196
# File 'lib/openapi_parser/errors.rb', line 193

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

Instance Method Details

#messageObject



198
199
200
# File 'lib/openapi_parser/errors.rb', line 198

def message
  "#{@reference} Value: #{@value.inspect} is not conformant with date format"
end