mirror of https://github.com/jumpserver/jumpserver
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.')
|