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



85
86
87
# File 'lib/sequenceserver/api_errors.rb', line 85

def http_status
  404
end

#messageObject



93
94
95
# File 'lib/sequenceserver/api_errors.rb', line 93

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

#more_infoObject



97
98
99
# File 'lib/sequenceserver/api_errors.rb', line 97

def more_info
  ''
end

#titleObject



89
90
91
# File 'lib/sequenceserver/api_errors.rb', line 89

def title
  'Job not found'
end