790
I hate API like this
(i.imgur.com)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Exceptions actually have a huge performance hit, you should only use them in a HALT EVERYTHING IMMEDIATELY situations and never in anything that could be called repeatedly. We have refactored few of those to be 10-100 times faster by just returning success: false instead of throwing and catching exceptions.