mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-01-13 19:45:40 +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.')
|