mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-09 01:58:42 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from common.exceptions import JMSException
|
|
|
|
|
|
class BulkCreateNotSupport(JMSException):
|
|
default_code = 'bulk_create_not_support'
|
|
default_detail = _('Bulk create not support')
|