There are many unneeded uses of throws Exception in method signatures. In addition, a lot of codes does catch Exception or catch Throwable which is very bad as it hides InterruptedException which prevents proper thread interrupt and Error which should never be caught.
-> clean this up
- depends on
-
NXP-15068 Refactor WebException and clean up usages
- Open