Class: SequenceServer::NotFound

Inherits:
APIError
  • Object
show all
Defined in:
lib/sequenceserver/api_errors.rb

Overview

Job not found (404).

Instance Method Summary collapse

Instance Method Details

#http_statusObject



31
32
33
# File 'lib/sequenceserver/api_errors.rb', line 31

def http_status
  404
end

#messageObject



39
40
41
# File 'lib/sequenceserver/api_errors.rb', line 39

def message
  'The requested job could not be found'
end

#more_infoObject



43
44
45
# File 'lib/sequenceserver/api_errors.rb', line 43

def more_info
  ''
end

#titleObject



35
36
37
# File 'lib/sequenceserver/api_errors.rb', line 35

def title
  'Job not found'
end