12 lines
153 B
Python
12 lines
153 B
Python
"""
|
|
Exceptions thrown by KeyStore objects
|
|
"""
|
|
|
|
|
|
class ItemNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class InsufficientSpecificationError(Exception):
|
|
pass
|