protected void fixMissingThrowableProperty(Map<String, Property> descriptors, String name, String readMethodName) throws IntrospectionException
{
if (!descriptors.containsKey(name) && isAllowedByIncludeExcludeRules(name))
{
PropertyDescriptor descriptor = new PropertyDescriptor(name, Throwable.class, readMethodName, null);
descriptors.put(name, new PropertyDescriptorProperty(descriptor));
}
}