13 lines
172 B
Ruby
13 lines
172 B
Ruby
|
|
require_relative 'devops_error'
|
||
|
|
module Devops
|
||
|
|
module Exception
|
||
|
|
class ConfigurationError < DevopsError
|
||
|
|
|
||
|
|
def http_status
|
||
|
|
500
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|