class SoberSwag::Reporting::InvalidSchemaError
Thrown we cannot generate a swagger schema for some reason.
This typically only occurs if you use types that are too complicated. For example, an object type cannot be used as part of the path params.
Attributes
input[R]
Public Class Methods
new(input)
click to toggle source
Calls superclass method
# File lib/sober_swag/reporting/invalid_schema_error.rb, line 9 def initialize(input) @input = input super("Could not generate schema for #{input}") end