2018-04-04 22:44:39 +03:00
|
|
|
require_relative 'devops_error'
|
|
|
|
|
module Devops
|
|
|
|
|
module Exception
|
|
|
|
|
class ConflictError < DevopsError
|
2015-07-27 15:40:10 +03:00
|
|
|
|
2018-04-04 22:44:39 +03:00
|
|
|
def http_status
|
|
|
|
|
409
|
|
|
|
|
end
|
2015-10-20 16:12:50 +03:00
|
|
|
|
2018-04-04 22:44:39 +03:00
|
|
|
end
|
2015-10-20 16:12:50 +03:00
|
|
|
end
|
2015-07-27 15:40:10 +03:00
|
|
|
end
|