Improved tests, fixed javascript for photocapture, removed extraneous photocapture code, added time & course numbers to templates for design
10 lines
212 B
Python
10 lines
212 B
Python
"""
|
|
Exceptions for the verify student app
|
|
"""
|
|
# (Exception Class Names are sort of self-explanatory, so skipping docstring requirement)
|
|
# pylint: disable=C0111
|
|
|
|
|
|
class WindowExpiredException(Exception):
|
|
pass
|