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.
255 256 257 258 |
# File 'lib/openapi_parser/errors.rb', line 255 def initialize(value, reference) super(reference) @value = value end |
Instance Method Details
#message ⇒ Object
260 261 262 |
# File 'lib/openapi_parser/errors.rb', line 260 def "#{@reference} #{@value.inspect} is longer than max length" end |