13 lines
164 B
Ruby
13 lines
164 B
Ruby
|
|
module Devops
|
||
|
|
class ValidationError < Exception
|
||
|
|
|
||
|
|
attr_accessor :json
|
||
|
|
|
||
|
|
def initialize msg, json=true
|
||
|
|
super(msg)
|
||
|
|
json = json
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|