Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Try/Catch Opinions

Try/Catch Opinions

Scheduled Pinned Locked Moved C#
databasequestiondiscussion
27 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Lost User

    IMO you should stay away from religious arguments. By the time you're finished checking all the conditions, I could have the deleted the file that you're reading.

    Bastard Programmer from Hell :suss:

    S Offline
    S Offline
    SledgeHammer01
    wrote on last edited by
    #8

    This. Writing "bullet proof" code that handles every case from day one, I've learned is a waste of your time and CPU cycles and does nothing but piss off your boss who is wondering why it is taking you so long. Write your first pass with general case error handling and add the obscure corner cases as you come across them in testing. However, structuring your code with the intention of handling these corner cases down the road would behoove you. What I mean by that is... well, one of the projects I'm working on is a project that my boss implemented 100%, and he is "from the street" and doesn't believe in structure and design, so there is SQL code sprinkled pretty much every where. Had he packaged all his SQL code into a single DAL, it would have been much easier to debug and expand. The project that I wrote 100% from scratch, I did exactly that... yeah, it didn't handle every corner case from day one, but as I found the cases, I only had to change 1 or 2 places. I'm mentioning this because it sounds like you have your external access stuff sprinkled everywhere throughout the GUI :).

    1 Reply Last reply
    0
    • M mjackson11

      I have several small programs that scrap input and load it into a database. Since much of the code relies on external resources being ready, a lot of my code ends up being in try/catch blocks. Is there a lot of overhead associated with these? I have tried to consolidate interaction with external sites and db's so there are a minimal number. Is there a better way to do this than having a block in each method? Thx Mark Jackson

      E Offline
      E Offline
      Ennis Ray Lynch Jr
      wrote on last edited by
      #9

      My rule of thumb, I never catch an error I can't handle. And I never try something when there is an associated way to guarantee success. There are some people that clamor about correct code causing missed deadlines. Anecdotaly, successful programmers never complain about how much time it takes to write code correctly.

      Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

      P 1 Reply Last reply
      0
      • E Ennis Ray Lynch Jr

        My rule of thumb, I never catch an error I can't handle. And I never try something when there is an associated way to guarantee success. There are some people that clamor about correct code causing missed deadlines. Anecdotaly, successful programmers never complain about how much time it takes to write code correctly.

        Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS. "And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

        P Offline
        P Offline
        PIEBALDconsult
        wrote on last edited by
        #10

        Hear hear! "If you don't have time to do it right, when will you have time to do it over?"

        1 Reply Last reply
        0
        • N Not Active

          IMO if a condition can be expected and tested for then it is not an exception and you shouldn't rely on exception handling.


          No comment

          P Offline
          P Offline
          Pete OHanlon
          wrote on last edited by
          #11

          Indeed, where it's appropriate, a simple check can often save time. Ultimately, as you progress, you end up building a handy set of utility methods that you can use, for instance here's a simplified version of a file create that you could use:

          public static FileStream TryCreateFile(string fileToCreate)
          {
          string directoryName = Path.GetDirectoryName(fileToCreate);
          if (!Directory.Exists(directoryName))
          Directory.CreateDirectory(directoryName);
          return File.Create(fileToCreate);
          }

          Forgive your enemies - it messes with their heads

          "Mind bleach! Send me mind bleach!" - Nagy Vilmos

          My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

          P L B 3 Replies Last reply
          0
          • P Pete OHanlon

            Indeed, where it's appropriate, a simple check can often save time. Ultimately, as you progress, you end up building a handy set of utility methods that you can use, for instance here's a simplified version of a file create that you could use:

            public static FileStream TryCreateFile(string fileToCreate)
            {
            string directoryName = Path.GetDirectoryName(fileToCreate);
            if (!Directory.Exists(directoryName))
            Directory.CreateDirectory(directoryName);
            return File.Create(fileToCreate);
            }

            Forgive your enemies - it messes with their heads

            "Mind bleach! Send me mind bleach!" - Nagy Vilmos

            My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

            P Offline
            P Offline
            PIEBALDconsult
            wrote on last edited by
            #12

            How does that save time? Delete will check for the existence of the file a second time. Edit: Or is that just a bad example? "If the file to be deleted does not exist, no exception is thrown."

            P 1 Reply Last reply
            0
            • P Pete OHanlon

              Indeed, where it's appropriate, a simple check can often save time. Ultimately, as you progress, you end up building a handy set of utility methods that you can use, for instance here's a simplified version of a file create that you could use:

              public static FileStream TryCreateFile(string fileToCreate)
              {
              string directoryName = Path.GetDirectoryName(fileToCreate);
              if (!Directory.Exists(directoryName))
              Directory.CreateDirectory(directoryName);
              return File.Create(fileToCreate);
              }

              Forgive your enemies - it messes with their heads

              "Mind bleach! Send me mind bleach!" - Nagy Vilmos

              My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

              L Offline
              L Offline
              Lost User
              wrote on last edited by
              #13

              Wouldn't be so handy if you'd use it to clear a folder. If you recently fetched the folders' contents, chances are that the files still exist.

              Bastard Programmer from Hell :suss:

              1 Reply Last reply
              0
              • P PIEBALDconsult

                How does that save time? Delete will check for the existence of the file a second time. Edit: Or is that just a bad example? "If the file to be deleted does not exist, no exception is thrown."

                P Offline
                P Offline
                Pete OHanlon
                wrote on last edited by
                #14

                It was actually a bad example - I'll update it with the example I was actually thinking of.

                Forgive your enemies - it messes with their heads

                "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                L 1 Reply Last reply
                0
                • M mjackson11

                  I have several small programs that scrap input and load it into a database. Since much of the code relies on external resources being ready, a lot of my code ends up being in try/catch blocks. Is there a lot of overhead associated with these? I have tried to consolidate interaction with external sites and db's so there are a minimal number. Is there a better way to do this than having a block in each method? Thx Mark Jackson

                  L Offline
                  L Offline
                  Luc Pattyn
                  wrote on last edited by
                  #15

                  It depends on the situation. 1. If it is an all-good-or-not situation, then it deserves a single overall try-catch. 2. If you want to extract as much as possible, then you need very granular error checking (if possible) or try-catching (if no error peeking is possible). 3. And if you can't handle the exception(s), then it falls back to either #1 or #2 anyway. :)

                  Luc Pattyn [My Articles] Nil Volentibus Arduum

                  1 Reply Last reply
                  0
                  • P Pete OHanlon

                    It was actually a bad example - I'll update it with the example I was actually thinking of.

                    Forgive your enemies - it messes with their heads

                    "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                    My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                    L Offline
                    L Offline
                    Luc Pattyn
                    wrote on last edited by
                    #16

                    I'm afraid this isn't your day; you failed at improving the example. Directory.CreateDirectory() does nothing when the folder already exists, so there is no point checking first. :-D

                    Luc Pattyn [My Articles] Nil Volentibus Arduum

                    P 1 Reply Last reply
                    0
                    • L Luc Pattyn

                      I'm afraid this isn't your day; you failed at improving the example. Directory.CreateDirectory() does nothing when the folder already exists, so there is no point checking first. :-D

                      Luc Pattyn [My Articles] Nil Volentibus Arduum

                      P Offline
                      P Offline
                      Pete OHanlon
                      wrote on last edited by
                      #17

                      Actually, in this particular case, there is - the IL is slightly different internally, and it saves clock cycles on the test in CreateDirectory. That's the reason it's in. The important part is actually the second part - hence the point of the example.

                      Forgive your enemies - it messes with their heads

                      "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                      My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                      L 1 Reply Last reply
                      0
                      • P Pete OHanlon

                        Actually, in this particular case, there is - the IL is slightly different internally, and it saves clock cycles on the test in CreateDirectory. That's the reason it's in. The important part is actually the second part - hence the point of the example.

                        Forgive your enemies - it messes with their heads

                        "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                        My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                        L Offline
                        L Offline
                        Luc Pattyn
                        wrote on last edited by
                        #18

                        Ah. I never looked at the IL, I was assuming they were smart enough to make the test inside CreateDirectory() as efficient as the one inside Exists(). :doh:

                        Luc Pattyn [My Articles] Nil Volentibus Arduum

                        P 1 Reply Last reply
                        0
                        • L Luc Pattyn

                          Ah. I never looked at the IL, I was assuming they were smart enough to make the test inside CreateDirectory() as efficient as the one inside Exists(). :doh:

                          Luc Pattyn [My Articles] Nil Volentibus Arduum

                          P Offline
                          P Offline
                          Pete OHanlon
                          wrote on last edited by
                          #19

                          Why do I feel the need to go "Helloooooo. Microsoft."?

                          Forgive your enemies - it messes with their heads

                          "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                          My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                          L 1 Reply Last reply
                          0
                          • P Pete OHanlon

                            Why do I feel the need to go "Helloooooo. Microsoft."?

                            Forgive your enemies - it messes with their heads

                            "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                            My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                            L Offline
                            L Offline
                            Luc Pattyn
                            wrote on last edited by
                            #20

                            I don't know. Besides, I prefer How questions over Why questions any day. :)

                            Luc Pattyn [My Articles] Nil Volentibus Arduum

                            1 Reply Last reply
                            0
                            • P Pete OHanlon

                              Indeed, where it's appropriate, a simple check can often save time. Ultimately, as you progress, you end up building a handy set of utility methods that you can use, for instance here's a simplified version of a file create that you could use:

                              public static FileStream TryCreateFile(string fileToCreate)
                              {
                              string directoryName = Path.GetDirectoryName(fileToCreate);
                              if (!Directory.Exists(directoryName))
                              Directory.CreateDirectory(directoryName);
                              return File.Create(fileToCreate);
                              }

                              Forgive your enemies - it messes with their heads

                              "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                              My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                              B Offline
                              B Offline
                              BillWoodruff
                              wrote on last edited by
                              #21

                              Pete, this is good solid code (I'd expect no less from you), but in a way I can see this as a bit of a diversion from the original topic: error handling and Try/Catch. In your code, yes, a Directory will be created, if none exists, but, what about the case it's an error ... for this particular application ... if the user is trying to save a file to a Directory that does not exist ? And, what about the case where the Directory exists, but is read-only ? Should code like this be "throwing" errors ? And what, if the code "throws," should be "catching them." And, as Abbott said to Costello: "Who's on first ?" best, Bill

                              "... Sturgeon's revelation. It came to him that Science Fiction is indeed ninety-percent crud, but that also—Eureka!—ninety-percent of everything is crud. All things—cars, books, cheeses, hairstyles, people and pins are, to the expert and discerning eye, crud, except for the acceptable tithe which we each happen to like." early 1950's quote from Venture Sci-Fi Magazine on the origin of Sturgeon's Law, by author Theodore Sturgeon: source Oxford English Dictionary on-line "Word-of-the-Day."

                              P 1 Reply Last reply
                              0
                              • M mjackson11

                                I have several small programs that scrap input and load it into a database. Since much of the code relies on external resources being ready, a lot of my code ends up being in try/catch blocks. Is there a lot of overhead associated with these? I have tried to consolidate interaction with external sites and db's so there are a minimal number. Is there a better way to do this than having a block in each method? Thx Mark Jackson

                                J Offline
                                J Offline
                                jschell
                                wrote on last edited by
                                #22

                                mjackson11 wrote:

                                Is there a lot of overhead associated with these?

                                Not unless there are in fact a lot of exceptions.

                                mjackson11 wrote:

                                Is there a better way to do this than having a block in each method?

                                That depends on what the application does and what you do in the block. If you have a server that runs 24x7 and moves data from one remote source to another then sometimes there will be connection failures. In a case like that then the it must catch exceptions that originate from communication problems and continue. If it is a console app that runs either pass/fail by a human and they are not supposed to run it unless everything is already working then catching an exception is optional. Maybe friendly but also an extreme case. If the app needs to handle 3 sequential cases and all must pass then you must handle exceptions so that you can take some sort of action if step 3 fails after the first two succeeded. When I write servers I catch almost everything so I can log it. And so on...

                                1 Reply Last reply
                                0
                                • L Lost User

                                  mjackson11 wrote:

                                  Is there a better way to do this than having a block in each method?

                                  Yup, you can hook an event that catches all unhandled exceptions[^]. There you can log it, without having the need for a try-catch everywhere. Log everything you encounter, and handle those using try-catch blocks; some will be bugs, some will be exceptions that need a) user interaction (file in use, database dead), b) no user interaction. Handle what you can and log everything.

                                  Bastard Programmer from Hell :suss:

                                  J Offline
                                  J Offline
                                  jschell
                                  wrote on last edited by
                                  #23

                                  That is a last best effort rather than being a general solution because the AppDomain will then exit (or application will exit at the top level.)

                                  L 1 Reply Last reply
                                  0
                                  • J jschell

                                    That is a last best effort rather than being a general solution because the AppDomain will then exit (or application will exit at the top level.)

                                    L Offline
                                    L Offline
                                    Lost User
                                    wrote on last edited by
                                    #24

                                    That's the idea with an unexpected exception; your application is in an unknown state, and hence, should terminate.

                                    Bastard Programmer from Hell :suss:

                                    J 1 Reply Last reply
                                    0
                                    • L Lost User

                                      That's the idea with an unexpected exception; your application is in an unknown state, and hence, should terminate.

                                      Bastard Programmer from Hell :suss:

                                      J Offline
                                      J Offline
                                      jschell
                                      wrote on last edited by
                                      #25

                                      I don't see anything in your original post that suggested it was only applicable for "...unexpected exception; your application is in an unknown state". Most exceptions will not fall into that category. In general your suggestion is not applicable for exceptions. And nothing I see in the OPs posts suggests it is applicable to the OP.

                                      1 Reply Last reply
                                      0
                                      • M mjackson11

                                        I have several small programs that scrap input and load it into a database. Since much of the code relies on external resources being ready, a lot of my code ends up being in try/catch blocks. Is there a lot of overhead associated with these? I have tried to consolidate interaction with external sites and db's so there are a minimal number. Is there a better way to do this than having a block in each method? Thx Mark Jackson

                                        E Offline
                                        E Offline
                                        emardini
                                        wrote on last edited by
                                        #26

                                        Can you please post a piece of your code in a try catch block?

                                        1 Reply Last reply
                                        0
                                        • B BillWoodruff

                                          Pete, this is good solid code (I'd expect no less from you), but in a way I can see this as a bit of a diversion from the original topic: error handling and Try/Catch. In your code, yes, a Directory will be created, if none exists, but, what about the case it's an error ... for this particular application ... if the user is trying to save a file to a Directory that does not exist ? And, what about the case where the Directory exists, but is read-only ? Should code like this be "throwing" errors ? And what, if the code "throws," should be "catching them." And, as Abbott said to Costello: "Who's on first ?" best, Bill

                                          "... Sturgeon's revelation. It came to him that Science Fiction is indeed ninety-percent crud, but that also—Eureka!—ninety-percent of everything is crud. All things—cars, books, cheeses, hairstyles, people and pins are, to the expert and discerning eye, crud, except for the acceptable tithe which we each happen to like." early 1950's quote from Venture Sci-Fi Magazine on the origin of Sturgeon's Law, by author Theodore Sturgeon: source Oxford English Dictionary on-line "Word-of-the-Day."

                                          P Offline
                                          P Offline
                                          Pete OHanlon
                                          wrote on last edited by
                                          #27

                                          Bill, sorry for the delay in replying. To answer your unspoken question, yes and no - the code was answering the premise that exception handling should not be relied upon when a simple check can solve the issue. So, what is the error we're coping with in this example? It's the fact that you can't write a file into a directory until that directory exists. The other side here, is the fact as you've rightly pointed out, that this doesn't address all the cases that can be tested for. In my defence, I wrote this as a cut-down sample in the CP editor as an example only, but you are right, there are many other conditions that could be catered for. The point is really two-fold, if you create a utility API to handle the conditions that you can test for (rather than catch as an exception) then you have given yourself a real advantage when you come to write your production code. No, you won't get rid of exception handling altogether, but you won't be relying on it to cope with conditions that could easily have been tested for. So, why do I advocate this? Well, exception handling is meant to indicate something that you couldn't reasonably predict and cope with. The mark of a good application is one that doesn't surprise users, so I'm either going to have to do lots of try/catch (and then cope with the failure before triggering the condition in the try/catch again), or I can put something in place to cope with the error before it occurs and make an intelligent decision about coping with the problem. I hope this somewhat rambling post conveys some of what I was trying to get across.

                                          Forgive your enemies - it messes with their heads

                                          "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                                          My blog | My articles | MoXAML PowerToys | Mole 2010 - debugging made easier - my favourite utility

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups