()
| 258 | } |
| 259 | |
| 260 | public Errors bindingToProvider() { |
| 261 | return addMessage(ErrorId.BINDING_TO_PROVIDER, "Binding to Provider is not allowed."); |
| 262 | } |
| 263 | |
| 264 | public Errors notASubtype(Class<?> implementationType, Class<?> type) { |
| 265 | return addMessage(ErrorId.NOT_A_SUBTYPE, "%s doesn't extend %s.", implementationType, type); |