(Class<? extends Annotation> scopeAnnotation)
| 303 | } |
| 304 | |
| 305 | public Errors scopeNotFound(Class<? extends Annotation> scopeAnnotation) { |
| 306 | return addMessage( |
| 307 | new Message( |
| 308 | GuiceInternal.GUICE_INTERNAL, |
| 309 | ErrorId.SCOPE_NOT_FOUND, |
| 310 | new ScopeNotFoundError(scopeAnnotation, getSources()))); |
| 311 | } |
| 312 | |
| 313 | public Errors scopeAnnotationOnAbstractType( |
| 314 | Class<? extends Annotation> scopeAnnotation, Class<?> type, Object source) { |
no test coverage detected