Deleting bookmarks, fix bug in menus

This commit is contained in:
stijndcl 2022-09-01 01:02:18 +02:00
parent f70736b4d5
commit 152f84ed1c
5 changed files with 72 additions and 6 deletions

View file

@ -1,10 +1,12 @@
from .constraints import DuplicateInsertException, ForbiddenNameException
from .currency import DoubleNightly, NotEnoughDinks
from .forbidden import Forbidden
from .not_found import NoResultFoundException
__all__ = [
"DuplicateInsertException",
"ForbiddenNameException",
"Forbidden",
"DoubleNightly",
"NotEnoughDinks",
"NoResultFoundException",

View file

@ -0,0 +1,5 @@
__all__ = ["Forbidden"]
class Forbidden(Exception):
"""Exception raised when trying to access a resource that isn't yours"""