public void Process(PropertyDefinition property) { try { if (property.IsGeneratedCode()) { return; } InnerProcess(property); } catch (Exception exception) { throw new WeavingException(string.Format("An error occurred processing property '{0}'", property.FullName), exception); } }
public void Process(PropertyDefinition property) { try { if (property.IsGeneratedCode()) { return; } InnerProcess(property); } catch (Exception exception) { LogTo.Error(exception, "An error occurred processing property '{0}'.", property.FullName); } }