Home » C# User Defined Exceptions

C# User Defined Exceptions

by Online Tutorials Library

C# User-Defined Exceptions

C# allows us to create user-defined or custom exception. It is used to make the meaningful exception. To do this, we need to inherit Exception class.

C# user-defined exception example

Output:

InvalidAgeException: Sorry, Age must be greater than 18 Rest of the code 

You may also like