.NET Tip: Throwing Custom Exceptions Albany NY

Use custom exceptions to add information that will be more meaningful to your users when exceptions occur. And, you still can maintain all the information from the original exception.

Local Companies

CompareTechProviders.com
518-207-3445
5 Washington Place
Troy, NY
Softtek Integration Systems Inc
(518) 464-9344
1500 Central Ave
Albany, NY
T I M Formation Inc
(518) 456-6211
1913 Central Ave Ste 1
Albany, NY
Comsys Technical Svcs Inc
(518) 458-6145
125 Wolf Rd
Albany, NY
Cgi-Ams
(518) 218-7700
100 Great Oaks Blvd
Albany, NY
I Mg
(518) 482-0558
8 Automation Ln
Albany, NY
Lauren Group Llc the
(518) 453-1635
98 Wolf Tcby Rd
Albany, NY
Brainstorm-Micro
(518) 433-1250
11 Pruyn St
Albany, NY
Tos Systems Inc
(518) 869-5009
210 Washington Avenue Ex
Albany, NY
D & D Consulting Ltd
(518) 218-0900
4 Pine W Plz
Albany, NY

provided by: 
Originally published at Internet.com


Creating your own custom exceptions is very easy and allows your code to be more explicit as well as being able to provide more user-friendly error messages. To show how to use custom exceptions, I will use connecting to a database as an example. Connecting to a database is something your application probably does on a regular basis and is a common point of failure. The first step is to create the class for your custom exception that inherits from another exception class. In this case, you'll create an UnableToOpenDatabaseException based on the Exception class. Here is what the custom exception class looks like: public class UnableToOpenDatabaseException : Exception { public UnableToOpenDatabaseException() : base() { } public UnableToOpenDatabaseException(string Message) : base(Message) { } public UnableToOpenDatabaseException(string Message, Exception InnerException) : base(Message, InnerException) { } protected UnableToOpenDatabaseException(SerializationInfo Info, StreamingContext Context) : base(Info, Context) { } }

To use the custom exception, you need to check to see whether an exception is thrown when you attempt to connect to the database. In my case, I'm connecting to SQL Server, so I will check to see if a SQLException was thrown. If a SQLException is thrown, I throw the new UnableToOpenDatabaseException, passing the original exception to the new one. If an exception other than a SQLException is thrown, I simply rethrow the original exception. using (SqlConnection CN = new SqlConnection("*** Your connection string here ***")) { try { CN.Open(); } catch (SqlException ex) { // Throw the custom UnableToOpenDatabaseException throw new UnableToOpenDatabaseException("Unable to open database connection.", ex); } catch (Exception ex) { // Rethrow the original exception throw; } }

This allows the calling code to take advantage of the new exception while still allowing it to access all of the original exception information if needed. This example lumped any type of SQLException under the new exception type. If you needed more granularity in your exceptions, you could create custom exceptions for different failure conditions.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the release of the first beta and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

CompareTechProviders.com

Compare providers of business essential software solutions. Request information, pricing from multiple providers.

518-207-3445
5 Washington Place
Troy, NY
CompareTechProviders.com

Review and compare providers of business essential software solutions. Request information, pricing and demos from multiple providers. Make the right choice for your business.

Related Local Event
Thirty Low/No-Cost Things to Keep Your Computers and Network Running Smoothly
Dates: 7/21/2009 - 7/21/2009
Location: Albany-Colonie Regional Chamber of Commerce
Albany, NY
View Details