Exception: Bioroebe::Biomart::BiomartError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/bioroebe/biomart/biomart.rb

Overview

#

This is the base Biomart error/exception class. Rescue it if you want to catch any exceptions that this code might raise.

#

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ BiomartError

#

initialize

#


43
44
45
46
# File 'lib/bioroebe/biomart/biomart.rb', line 43

def initialize(data)
  @data = data
  super
end

Instance Method Details

#data?Boolean Also known as: data

#

data?

#

Returns:

  • (Boolean)


51
52
53
# File 'lib/bioroebe/biomart/biomart.rb', line 51

def data?
  @data
end