10 lines
224 B
Python
10 lines
224 B
Python
"""
|
|
Exceptions for the verify student app
|
|
"""
|
|
# (Exception Class Names are sort of self-explanatory, so skipping docstring requirement)
|
|
# pylint: disable=missing-docstring
|
|
|
|
|
|
class WindowExpiredException(Exception):
|
|
pass
|