mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-29 03:44:41 +00:00
7 lines
198 B
Python
7 lines
198 B
Python
from common.exceptions import JMSException
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PlaybookNoValidEntry(JMSException):
|
|
default_detail = _('no valid program entry found.')
|