mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-29 03:44:41 +00:00
10 lines
210 B
Python
10 lines
210 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from common.exceptions import JMSException
|
|
|
|
|
|
class AlreadyClosed(JMSException):
|
|
default_detail = _("Ticket already closed")
|