bitextor / pdf-extract

PDF parser and converter to HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

catch and throw again anti-pattern

kpu opened this issue · comments

What's the purpose of catching exceptions only to throw them again?

} catch (Exception ex) {
throw ex;
}