Exception: OpenAPIParser::InvalidUUIDFormat

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

Instance Method Summary collapse

Constructor Details

#initialize(value, reference) ⇒ InvalidUUIDFormat

Returns a new instance of InvalidUUIDFormat.



188
189
190
191
# File 'lib/openapi_parser/errors.rb', line 188

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

Instance Method Details

#messageObject



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

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