14 lines
130 B
Ruby
14 lines
130 B
Ruby
|
|
module Devops
|
||
|
|
module Exception
|
||
|
|
|
||
|
|
class DevopsError < StandardError
|
||
|
|
|
||
|
|
def code
|
||
|
|
500
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|