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