mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
358 B
13 lines
358 B
from django.utils.translation import gettext_lazy as _ |
|
|
|
from common.exceptions import JMSException |
|
|
|
|
|
class BulkCreateNotSupport(JMSException): |
|
default_code = 'bulk_create_not_support' |
|
default_detail = _('Bulk create not support') |
|
|
|
|
|
class StorageInvalid(JMSException): |
|
default_code = 'storage_invalid' |
|
default_detail = _('Storage is invalid')
|
|
|