mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 03:21:12 +00:00
9 lines
257 B
Python
9 lines
257 B
Python
from common.exceptions import JMSException
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class VaultException(JMSException):
|
|
default_detail = _(
|
|
'Vault operation failed. Please retry or check your account information on Vault.'
|
|
)
|