I have used catch block with multiple exceptions , Which is working fine in unobfuscated build, But not catching exception in obfuscated build.
I am using proguard-maven-plugin
try {
...
} catch (ServletException | IOException e){
...
}
Is there any proguard rule i need to add for this?
Because its working fine When i write my code as
try {
...
} catch (ServletException e) {
...
} catch (IOException e) {
...
}