8 lines
131 B
Python
8 lines
131 B
Python
"""Exceptions."""
|
|
|
|
|
|
class RequiresLoginException(Exception):
|
|
"""An exception thrown if the user is not logged in."""
|
|
|
|
pass
|