mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-04 22:27:06 +00:00
7 lines
170 B
Python
7 lines
170 B
Python
from rest_framework import status
|
|
from common.exceptions import JMSException
|
|
|
|
|
|
class NodeIsBeingUpdatedByOthers(JMSException):
|
|
status_code = status.HTTP_409_CONFLICT
|