Exception: OpenAPIParser::LessThanMinLength

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

Instance Method Summary collapse

Constructor Details

#initialize(value, reference) ⇒ LessThanMinLength

Returns a new instance of LessThanMinLength.



204
205
206
207
# File 'lib/openapi_parser/errors.rb', line 204

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

Instance Method Details

#messageObject



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

def message
  "#{@reference} #{@value} is shorter than min length"
end