Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
stisch48147yand make sure the catch block is empty! Then no one will even know something went wrong. Even you!
( @working beat me to this one. I ain't even mad ) -
DaveKenger57yThis actually happened to me. I was working on a Python application with a giant try catch absorbing EVERYTHING DAMN EXCEPTION and returning just: print "Error"
-
My last TPM actually legitimately wanted me to see if this was possible for iOS apps π
-
retnikt68947yAll my code is like this
try {
// Entire codebase here
} catch KeyboardInterrupt {
exit();
} -
iKonic11157y@OdeToCode Check out this article “Hide your crashes gracefully (and still report them)” @fabiocarballo https://proandroiddev.com/hide-your...
Related Rants
ππWrap it all up in try/catch
rant
smh