diff --git a/feed.xml b/feed.xml
index 6fc34312f2..702fe9c168 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,8 +5,8 @@
Intended as a documentation theme based on Jekyll for technical writers documenting software and other technical products, this theme has all the elements you would need to handle multiple products with both multi-level sidebar navigation, tags, and other documentation features.
https://pmd.github.io/pmd/
- Thu, 13 Aug 2020 08:20:30 +0000
- Thu, 13 Aug 2020 08:20:30 +0000
+ Thu, 13 Aug 2020 12:41:53 +0000
+ Thu, 13 Aug 2020 12:41:53 +0000Jekyll v3.9.0
diff --git a/pmd_release_notes.html b/pmd_release_notes.html
index 07c2c5272f..73be499e4d 100644
--- a/pmd_release_notes.html
+++ b/pmd_release_notes.html
@@ -1442,6 +1442,8 @@ which was introduced in PMD 6.26.0.
#2471: [java] New Rule: AvoidReassigningCatchVariables
#2686: [java] UnusedAssignment must not flag abstract method parameters in interfaces and abstract classes
java-errorprone
diff --git a/pmd_rules_java_bestpractices.html b/pmd_rules_java_bestpractices.html
index f78d058ed6..e609715e5c 100644
--- a/pmd_rules_java_bestpractices.html
+++ b/pmd_rules_java_bestpractices.html
@@ -2976,6 +2976,18 @@ out by default, in case you already have enabled those rules, but may be enabled
reportUnusedVariables. Variables whose name starts with ignored are filtered out, as
is standard practice for exceptions.
+
Limitations:
+
+
The rule currently cannot know which method calls throw exceptions, or which exceptions they throw.
+In the body of a try block, every method or constructor call is assumed to throw. This may cause false-negatives.
+The only other language construct that is assumed to throw is the throw statement, in particular,
+things like assert statements, or NullPointerExceptions on dereference are ignored.
+
The rule cannot resolve assignments across constructors, when they’re called with the special
+this(...) syntax. This may cause false-negatives.
+
+
+
Both of those limitations may be partly relaxed in PMD 7.