C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Rohatash Kumar(2)
Ashish Bhatnagar(1)
Jitendra Mesavaniya(1)
Akash Malhotra(1)
Akkiraju Ivaturi(1)
Mark Pelf(1)
Anoop Kumar Sharma(1)
Nick Chamberlain(1)
Satendra Singh Bhati(1)
Jignesh Trivedi(1)
Vikas Mishra(1)
C# Curator(1)
Mike Dobbles(1)
Christopher Duncan(1)
Akshay Amin(1)
Abhishek Chadha(1)
Aradhana Tripathi(1)
Aman Gupta(1)
Vidya Vrat Agarwal(1)
Shankar M(1)
Abhishek Dubey(1)
Kamran (1)
Resources
No resource found
Difference between Throw and Throws in Exception Handling
Aug 24, 2025.
Exception handling is an essential part of Java programming that ensures smooth execution of applications even when unexpected errors occur. Two important keywords used in this context are throw and throws.
Understanding throw vs throw ex vs throw new Exception() in C#
Jun 22, 2024.
Explore the nuances of exception handling in C# .NET with a deep dive into 'throw', 'throw ex', and 'throw new Exception()'. Learn when to use each technique, their impact on stack traces and exception propagation, and best practices for effective error handling in your applications.
Difference Between Throw and Throw ex in C#
Jun 18, 2015.
In this article you will learn the difference between throw and throw ex in C# programming.
Difference Between Throw Exception and Throw Clause
Aug 06, 2012.
In this article, you will understand the difference between 'throw exception' and 'throw clause' is essential for effective error handling. While 'throw exception' generates and propagates a new exception object, 'throw clause' simply rethrows the current exception, maintaining its original state.
Entity Framework 9 - GroupBy Throwing Exception
Feb 19, 2025.
Entity Framework 9 (EF9) has a bug where using GroupBy with sorting may throw the exception: "The given key 'EmptyProjectionMember' was not present in the dictionary." Workarounds exist but aren't always practical.
Testing The Exception Thrown In NUnit C#
Jul 25, 2022.
In this article, we will learn how to unit test the code that is throwing an exception in NUnit C#
Throwing an Invalid Cast Exception?... Look Out for Unboxing
Jan 02, 2016.
In this you will learn about an error that can occur in what would normally be a straightforward numeric conversion.
Throw and Throws in Java
Oct 14, 2013.
In this article you will learn about throw and throws in Java. Both throw and throws are used in exception handling in Java.
Throw in SQL Server 2012
Oct 08, 2013.
Throw keyword is introduced with SQL server 2012. Throw is used to raises exception and transfers execution to a CATCH block in SQL server.
Throw Statement in SQL Server 2012
Aug 24, 2012.
In this article I will explain the use of the throw statement in SQL Server 2012.
Throwing an Exception in a JSP Page
Jan 04, 2012.
In this article, I am going to describe how to throw an exception in JSP.
Throw Statement in C#
Jan 01, 2010.
In this article I will explain you about Throw Statement in C#.
Silverlight Tutorial: How to Create an Animation of a Ball Being Thrown
Aug 06, 2008.
This tutorial explores the XAML involved in Silverlight animations and provides step by step instructions on how to create an animation of a ball being thrown and bouncing across the floor.
Pro Developer: Throwing Money Out the Window
Dec 18, 2002.
It's common knowledge among programmers that most of the ills of the software industry, and most particularly the companies where we work, could be solved by simply letting the technical people make the technical decisions. In fact, that sounds so obvious that you might be tempted to shake your head and wonder what planet I come from. Obviously, since this is so incredibly logical and sensible, it's a given that most companies leave management decisions to managers, and technical decisions to techies, right?
Chapter 17: Exception Handling: Robust Error Management in C++
Oct 23, 2025.
Master C++ exception handling for robust error management. Learn to gracefully handle unexpected runtime problems using try, catch, and throw. Discover how to use multiple catch blocks, custom exception classes, and RAII (Resource Acquisition Is Initialization) to write cleaner, more reliable code that prevents resource leaks and ensures program stability in the face of errors. Elevate your C++ skills with effective error handling techniques.
Methods for Effective Error Handling in Javascript
May 29, 2024.
JavaScript error handling involves managing syntax, runtime, and logical errors. Techniques include try...catch blocks, throwing custom errors, and handling asynchronous errors. Employing best practices ensures stability and reliability, enabling robust JavaScript applications.
Exception Handling in SQL Server
Sep 14, 2023.
This article explores SQL Server's TRY...CATCH statement for exception handling. It delves into its syntax, functions like ERROR_NUMBER and ERROR_MESSAGE, and demonstrates its use through examples.
Learn About Exception Handling In Java
Apr 18, 2021.
Through this article, users will get in-depth knowledge of Exceptions and Exception handling used in Java.
Best Practices - Exception Handling in C# .NET
Jun 25, 2013.
This article talks about best practices of exception handling, and guides you for some common programming mistakes developers do, as that seems appropriate in most of the application written.
Exception Handlers in C#
Feb 19, 2013.
In this article, I discuss what Exception Handlers are in C# and how to trap errors using try/catch blocks and their behavior when we use multiple catch statements to handle errors and finaly, how to create User-Defined exceptions.
Error Handling Functions in SQL Server 2012
Dec 14, 2012.
In this article, you will see some of the SQL Server Error functions which provide information about the error.
Exception Handling in Java
Jan 31, 2012.
Java exception handling is a common coding practice. In this article, learn how to handle exceptions in Java.
C# Exception Handling
Jan 03, 2002.
C# Exception Handling - Exception is a class in C#. Learn how to implement exception handling in C#.