* @return the exception with the error message
*/
private static ConfigurationRuntimeException constructorMatchingException(
Class<?> beanClass, BeanDeclaration data, String msg)
{
return new ConfigurationRuntimeException(String.format(FMT_CTOR_ERROR,
msg, beanClass.getName(), getConstructorArgs(data).toString()));
}