Custom Errors Series: Part 1 – What is an Exception

What is an Exception An Exception is the object class that is created by .Net when an error or unexpected state is encountered while executing application code.  All Exceptions inherit from the System.Exception class.  The Exception object that is created when an error occurs contains error details including the stack trace and potentially any underlying …

Custom Errors Series: Part 1 – What is an Exception Read More »