Click here to Skip to main content
15,890,897 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: Kill it with fire #2 - or fml Pin
Sander Rossel8-Jun-19 0:47
professionalSander Rossel8-Jun-19 0:47 
GeneralRe: Kill it with fire #2 - or fml Pin
David O'Neil8-Jun-19 5:49
professionalDavid O'Neil8-Jun-19 5:49 
GeneralRe: Kill it with fire #2 - or fml Pin
Rick York12-Jun-19 13:22
mveRick York12-Jun-19 13:22 
GeneralRe: Kill it with fire #2 - or fml Pin
Member 1388243212-Jun-19 20:31
Member 1388243212-Jun-19 20:31 
GeneralRe: Kill it with fire #2 - or fml Pin
Richard Deeming12-Jun-19 23:19
mveRichard Deeming12-Jun-19 23:19 
GeneralRe: Kill it with fire #2 - or fml Pin
charlieg1-Jun-19 3:15
charlieg1-Jun-19 3:15 
GeneralRe: Kill it with fire #2 - or fml Pin
Matias Lopez5-Jun-19 6:06
Matias Lopez5-Jun-19 6:06 
GeneralRe: Kill it with fire #2 - or fml Pin
AFell24-Jun-19 11:39
AFell24-Jun-19 11:39 
I used to have a developer who did his try/catch routine like this, thinking that as exceptions were caught "in the wild", he would fill in his catch clause. I had to show him that if he left his catch clauses open, none of the exceptions would be handled.

At the very lease, rethrow the original exception. The most effective method I've used is to go through all your activities in the try clause and look for all the different exceptions you are capable of throwing, and then trap those exceptions one at a time and recast the exception with a more descriptive message with any relevant values and capture the original exception as an inner exception so you don't lose the stack trace. And finish it with a catch-all.

It's a paranoid way of writing your catch clause, but OMG my operations guys were the first converts because they didn't have to go through the stack trace and data dumps...it's all right there in the message. It also makes for very effective unit tests too, since you can predict just every aspect of where the routine could break rather than some obtuse unhandled null reference exception.
GeneralRe: Kill it with fire #2 - or fml Pin
charlieg4-Jun-19 18:01
charlieg4-Jun-19 18:01 
GeneralRe: Kill it with fire #2 - or fml Pin
Dr.Walt Fair, PE8-Jun-19 5:34
professionalDr.Walt Fair, PE8-Jun-19 5:34 
GeneralRe: Kill it with fire #2 - or fml Pin
Jörgen Andersson12-Jun-19 10:02
professionalJörgen Andersson12-Jun-19 10:02 
GeneralRe: Kill it with fire #2 - or fml Pin
Dr.Walt Fair, PE8-Jun-19 5:32
professionalDr.Walt Fair, PE8-Jun-19 5:32 
GeneralToday's entry for the "kill it with fire" list Pin
Gary Wheeler14-May-19 7:06
Gary Wheeler14-May-19 7:06 
GeneralRe: Today's entry for the "kill it with fire" list Pin
phil.o14-May-19 7:30
professionalphil.o14-May-19 7:30 
JokeRe: Today's entry for the "kill it with fire" list Pin
raddevus14-May-19 8:19
mvaraddevus14-May-19 8:19 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Gary Wheeler14-May-19 8:32
Gary Wheeler14-May-19 8:32 
GeneralRe: Today's entry for the "kill it with fire" list Pin
DJ van Wyk15-May-19 20:25
professionalDJ van Wyk15-May-19 20:25 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Nathan Minier5-Jun-19 1:25
professionalNathan Minier5-Jun-19 1:25 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Ron Anders14-May-19 8:42
Ron Anders14-May-19 8:42 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Bernhard Hiller14-May-19 22:37
Bernhard Hiller14-May-19 22:37 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Gary Wheeler15-May-19 1:58
Gary Wheeler15-May-19 1:58 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Member 916705715-May-19 22:47
Member 916705715-May-19 22:47 
GeneralRe: Today's entry for the "kill it with fire" list Pin
englebart16-May-19 2:48
professionalenglebart16-May-19 2:48 
GeneralRe: Today's entry for the "kill it with fire" list Pin
Gary Wheeler16-May-19 2:50
Gary Wheeler16-May-19 2:50 
GeneralRe: Today's entry for the "kill it with fire" list Pin
englebart16-May-19 3:38
professionalenglebart16-May-19 3:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.