15 lines
202 B
Python
15 lines
202 B
Python
"""
|
|
Exceptions thrown by KeyStore objects
|
|
"""
|
|
|
|
|
|
class ItemNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class InsufficientSpecificationError(Exception):
|
|
pass
|
|
|
|
class InvalidLocationError(Exception):
|
|
pass
|