You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
migrated from Trac, where originally posted by krzysztof.krason on 3-Nov-2011 10:31am
When using Qulice I get error such as:
[ERROR] /src/main/java/com/expinia/quartz/PagingJob.java[62]: Unable to get class information for JobExecutionException. (RedundantThrowsCheck)
[ERROR] /src/main/java/com/expinia/quartz/PagingJob.java[84]: Unable to get class information for JobExecutionException. (RedundantThrowsCheck)
[ERROR] /src/main/java/com/expinia/quartz/RefreshJob.java[61]: Unable to get class information for JobExecutionException. (RedundantThrowsCheck)
[ERROR] /src/main/java/com/expinia/web/GenerateTimeFilter.java[55]: Unable to get class information for ServletException. (RedundantThrowsCheck)
[ERROR] /src/main/java/com/expinia/web/GenerateTimeFilter.java[66]: Unable to get class information for ServletException. (RedundantThrowsCheck)
[ERROR] /src/main/java/com/expinia/web/GenerateTimeFilter.java[90]: Unable to get class information for ServletException. (RedundantThrowsCheck)
The above errors didn't appear in case when checkstyle was used.
Both ServletException and JobExecutionException are of course imported. JobExecutionException (quartz) is in dependency at default scope, ServletException (servlets) is at provided scope.
It appears that there are some missing classpath entries when doing checkstyle.
I'm not sure if it's really Qulice issue, but I think that it would be good to look at it (e.g. create a simple project with servlet dependency), because if the code compiles and has correct throws declarations, it should also pass checkstyle.
The text was updated successfully, but these errors were encountered:
migrated from Trac, where originally posted by krzysztof.krason on 3-Nov-2011 10:31am
When using Qulice I get error such as:
The above errors didn't appear in case when checkstyle was used.
Both ServletException and JobExecutionException are of course imported. JobExecutionException (quartz) is in dependency at default scope, ServletException (servlets) is at provided scope.
It appears that there are some missing classpath entries when doing checkstyle.
I'm not sure if it's really Qulice issue, but I think that it would be good to look at it (e.g. create a simple project with servlet dependency), because if the code compiles and has correct throws declarations, it should also pass checkstyle.
The text was updated successfully, but these errors were encountered: