class Bio::BaseSpace::UnknownParameterError
Raised when a parameter was provided that is unknown to the implementation.
Public Class Methods
new(parameter)
click to toggle source
Create a new instance of the error.
parameter
-
Name of the parameter that is not recognized.
Calls superclass method
# File lib/basespace/api/basespace_error.rb, line 32 def initialize(parameter) super("#{parameter} is not regcognized as a parameter for this call") end