Records an error message which will be presented to the user at a later time. Unlike throwing an exception, this enable us to continue configuring the Injector and discover more errors. Uses String#format(String, Object[]) to insert the arguments into the message.
(String message, Object... arguments)
| 265 | * Uses {@link String#format(String, Object[])} to insert the arguments into the message. |
| 266 | */ |
| 267 | void addError(String message, Object... arguments); |
| 268 | |
| 269 | /** |
| 270 | * Records an exception, the full details of which will be logged, and the message of which will |
no outgoing calls