Exception: OpenAPIParser::MoreThanMaxLength
- Inherits:
-
OpenAPIError
- Object
- StandardError
- OpenAPIError
- OpenAPIParser::MoreThanMaxLength
- Defined in:
- lib/openapi_parser/errors.rb
Instance Method Summary collapse
-
#initialize(value, reference) ⇒ MoreThanMaxLength
constructor
A new instance of MoreThanMaxLength.
- #message ⇒ Object
Constructor Details
#initialize(value, reference) ⇒ MoreThanMaxLength
Returns a new instance of MoreThanMaxLength.
216 217 218 219 |
# File 'lib/openapi_parser/errors.rb', line 216 def initialize(value, reference) super(reference) @value = value end |
Instance Method Details
#message ⇒ Object
221 222 223 |
# File 'lib/openapi_parser/errors.rb', line 221 def "#{@reference} #{@value.inspect} is longer than max length" end |