fluke/devops-service/exceptions/record_not_found.rb

13 lines
168 B
Ruby
Raw Permalink Normal View History

2018-04-04 22:44:39 +03:00
require_relative 'devops_error'
module Devops
module Exception
class RecordNotFound < DevopsError
2014-05-08 15:34:26 +04:00
2018-04-04 22:44:39 +03:00
def http_status
404
end
end
end
2014-05-08 15:34:26 +04:00
end