Merge "Adjust the schedule of daisy baremetal jobs"
[releng.git] / utils / test / testapi / opnfv_testapi / common / raises.py
index ec6b8a5..55c58c9 100644 (file)
@@ -26,6 +26,10 @@ class Forbidden(Raiser):
     code = httplib.FORBIDDEN
 
 
+class Conflict(Raiser):
+    code = httplib.CONFLICT
+
+
 class NotFound(Raiser):
     code = httplib.NOT_FOUND