this.converters = converters;
}
public void handle(Class<?> annotatedType) {
if (!(Converter.class.isAssignableFrom(annotatedType))) {
throw new VRaptorException("converter does not implement Converter");
}
if (BaseComponents.getBundledConverters().contains(annotatedType)) {
logger.debug("Ignoring handling default converter {}", annotatedType);
return;
}