(TypeLiteral<?> type)
| 336 | + " or a zero-argument constructor that is not private."; |
| 337 | |
| 338 | public Errors missingConstructor(TypeLiteral<?> type) { |
| 339 | return addMessage( |
| 340 | new Message( |
| 341 | GuiceInternal.GUICE_INTERNAL, |
| 342 | ErrorId.MISSING_CONSTRUCTOR, |
| 343 | new MissingConstructorError(type, /* atInjectRequired= */ false, getSources()))); |
| 344 | } |
| 345 | |
| 346 | public Errors tooManyConstructors(Class<?> implementation) { |
| 347 | return addMessage( |
no test coverage detected