Thrown when a user tries to get() an instance from the container, before calling build().
get()
build()
container.register(Foo);// container.build(); // Should be called herecontainer.get(Foo); // Error: Container not ready! Copy
container.register(Foo);// container.build(); // Should be called herecontainer.get(Foo); // Error: Container not ready!
Static
Optional
Optional override for formatting stack traces
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Create .stack property on a target object
Generated using TypeDoc
Thrown when a user tries to
get()
an instance from the container, before callingbuild()
.Example