Exception: OpenAPIParser::InvalidDateTimeFormat

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

Instance Method Summary collapse

Constructor Details

#initialize(value, reference) ⇒ InvalidDateTimeFormat

Returns a new instance of InvalidDateTimeFormat.



210
211
212
213
# File 'lib/openapi_parser/errors.rb', line 210

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

Instance Method Details

#messageObject



215
216
217
# File 'lib/openapi_parser/errors.rb', line 215

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