47
1
using System;
2
3
namespace CustomExceptionHandling
4
{
5
//Custom User defiened Exception Created here, using Exception as base class
6
public class TestCustomException : Exception
7
{
8
9
public TestCustomException(string message) : base(message)
10
{
11
this.HelpLink = "Visit to qawithexperts.com for more information";
12
this.Source = "This is source of Error";
13
}
14
15
}
16
17
//Usual Class with method Show(), which throws Exception with message
18
public class MyClass
19
{
20
public static void Show()
21
{
22
throw new TestCustomException("This is Custom Exception example in C#");
23
}
24
}
Cached Result