class Onsi::Errors::IncludedParamError
Included Param Error
@author Maddie Schipper @since 1.1.0
Attributes
path[R]
The path that failed to parse.
Public Class Methods
new(message, path)
click to toggle source
@private
Create a new IncludedParamError
Calls superclass method
# File lib/onsi/errors.rb, line 53 def initialize(message, path) super(message) @path = path end