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

#


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

def initialize(data)
  @data = data
  super
end

Instance Method Details

#data?Boolean Also known as: data

#

data?

#

Returns:

  • (Boolean)


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

def data?
  @data
end