I used a catch block with a few exceptions, which works fine in an unobfuscated build, but not a catching exception in an obfuscated build.
I am using proguard-maven-plugin
try { ... } catch (ServletException | IOException e){ ... }
Is there any proguard rule that needs to be added for this?
Because it works fine when I write my code like
try { ... } catch (ServletException e) { ... } catch (IOException e) { ... }
source share