Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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; | ... | ... |
-
Please register or login to post a comment