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
S1193 fall under the CODE SMELL category, but I think it is worthwhile to implement it because the processor corresponding to this rule would have a similar implementation to what is done in #703. However, there is one caveat. We won't be able to fix if the type of catch variable is Exception. It might be possible to know which instances of the Exception can be thrown inside a try-block, but it would require us to also parse signatures of the method invoked; which might not be available everytime.
The text was updated successfully, but these errors were encountered:
S1193 fall under the
CODE SMELL
category, but I think it is worthwhile to implement it because the processor corresponding to this rule would have a similar implementation to what is done in #703. However, there is one caveat. We won't be able to fix if the type of catch variable isException
. It might be possible to know which instances of theException
can be thrown inside a try-block, but it would require us to also parse signatures of the method invoked; which might not be available everytime.The text was updated successfully, but these errors were encountered: