mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
346 B
13 lines
346 B
from django.utils.translation import ugettext as _
|
|
|
|
|
|
class UnknownUrlNameError(Exception):
|
|
|
|
def __init__(self, url_name):
|
|
self.url_name = url_name
|
|
|
|
def __str__(self):
|
|
return repr(
|
|
_("Funcionalidade")
|
|
+ " '%s' " % (self.url_name)
|
|
+ _("pode ter sido removida ou movida para outra url."))
|
|
|