Exception that captures a DB object conflict error.
| 26 | |
| 27 | |
| 28 | class StackStormDBObjectConflictError(StackStormBaseException): |
| 29 | """ |
| 30 | Exception that captures a DB object conflict error. |
| 31 | """ |
| 32 | |
| 33 | def __init__(self, message, conflict_id, model_object): |
| 34 | super(StackStormDBObjectConflictError, self).__init__(message) |
| 35 | self.conflict_id = conflict_id |
| 36 | self.model_object = model_object |
| 37 | |
| 38 | |
| 39 | class StackStormDBObjectWriteConflictError(StackStormBaseException): |
no outgoing calls
no test coverage detected