module Devops
class ValidationError < StandardError
attr_accessor :json
def initialize msg, json=true
super(msg)
json = json
end