8 lines
180 B
Python
8 lines
180 B
Python
"""Module of exceptions that zaza may raise."""
|
|
|
|
|
|
class MissingOSAthenticationException(Exception):
|
|
"""Exception when some data needed to authenticate is missing."""
|
|
|
|
pass
|