About 50 results
Open links in new tab
  1. c# - Catch multiple exceptions at once? - Stack Overflow

    try { WebId = new Guid(queryString["web"]); } catch (FormatException) { WebId = Guid.Empty; } catch (OverflowException) { WebId = Guid.Empty; } Is there a way to catch both exceptions and only set …

  2. javascript - Try...catch vs .catch - Stack Overflow

    May 28, 2020 · 6 Do I need to wrap try...catch in all functions? No, you don't, not unless you want to log it at every level for some reason. Just handle it at the top level. In an async function, promise …

  3. Difference between catch (Exception), catch () and just catch

    Both constructs (catch () being a syntax error, as sh4nx0r rightfully pointed out) behave the same in C#. The fact that both are allowed is probably something the language inherited from C++ syntax. , can …

  4. python - How can I catch multiple exceptions in one line? (in the ...

    How can I catch multiple exceptions in one line? (in the "except" block) Asked 14 years, 9 months ago Modified 7 months ago Viewed 1.7m times

  5. c# - Catching exceptions with "catch, when" - Stack Overflow

    Jul 21, 2016 · Does using the 'catch, when' feature make exception handling faster because the handler is skipped as such and the stack unwinding can happen much earlier as when compared to handling …

  6. How do you type an error property in a catch block in TypeScript?

    } catch (err: unknown) { Anything else is not supported. If you want something more specific, you will either need to write code to narrow down what type of thing was thrown, or you will need to use a …

  7. Catch and print full Python exception traceback without halting/exiting ...

    I think that this only works if you raise and then catch the exception, but not if you try getting the traceback before raising an exception object that you create, which you might want to do in some …

  8. Placement of catch BEFORE and AFTER then - Stack Overflow

    In the second scheme, if the promise p rejects, then the .catch() handler is called. If you return a normal value or a promise that eventually resolves from the .catch() handler (thus "handling" the error), then …

  9. How to catch `MESSAGE RAISING` type exception? - Stack Overflow

    Apr 4, 2024 · Given a classic ABAP exception like the following: MESSAGE ID 'XYZ' TYPE 'E' NUMBER 123 RAISING exception_name How do I catch this exception in the calling code? I have tried …

  10. Use a 'try-finally' block without a 'catch' block - Stack Overflow

    Feb 15, 2012 · Are there situations where it is appropriate to use a try-finally block without a catch block?