Jean-Francois Leveque

rootCause peut être final

...@@ -7,7 +7,7 @@ import javax.ejb.ApplicationException; ...@@ -7,7 +7,7 @@ import javax.ejb.ApplicationException;
7 */ 7 */
8 @ApplicationException(rollback = true) 8 @ApplicationException(rollback = true)
9 public class IndexingException extends Exception { 9 public class IndexingException extends Exception {
10 - Throwable rootCause; 10 + final Throwable rootCause;
11 11
12 IndexingException(Throwable rootCause) { 12 IndexingException(Throwable rootCause) {
13 this.rootCause = rootCause; 13 this.rootCause = rootCause;
......