13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			168 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require_relative 'devops_error'
 | |
| module Devops
 | |
|   module Exception
 | |
|     class RecordNotFound < DevopsError
 | |
| 
 | |
|       def http_status
 | |
|         404
 | |
|       end
 | |
| 
 | |
|     end
 | |
|   end
 | |
| end
 | 
