6 lines
172 B
Python
6 lines
172 B
Python
|
|
class ApplicationNotInitializedError(Exception):
|
||
|
|
"""
|
||
|
|
Thrown when attempting to access methods on the
|
||
|
|
ApplicationContext before it has been initialized.
|
||
|
|
"""
|