class Bio::BaseSpace::WrongFiletypeError

Raised when an unsupported or unsuitable file type is encountered.

Public Class Methods

new(filetype) click to toggle source

Create a new instance of the error.

filetype

Filetype that was intended to be used.

Calls superclass method
# File lib/basespace/api/basespace_error.rb, line 53
def initialize(filetype)
  super("This data request is not available for file #{filetype}")
end