forked from p15670423/monkey
Common: Add UnregisteredConventionError
This commit is contained in:
parent
ac172dc81f
commit
6345780182
|
@ -8,6 +8,10 @@ class UnregisteredTypeError(ValueError):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class UnregisteredConventionError(ValueError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class DIContainer:
|
class DIContainer:
|
||||||
"""
|
"""
|
||||||
A dependency injection (DI) container that uses type annotations to resolve and inject
|
A dependency injection (DI) container that uses type annotations to resolve and inject
|
||||||
|
|
Loading…
Reference in New Issue