Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to create custom exception in C#

1 Answer

0 votes
using System;
 
class NegativeError: Exception {
    public NegativeError(string message): base(message) {}
}

class Program
{
    static void CheckNegative(int n)
    {
      if (n < 0) {
         throw new NegativeError("Negative not allowed");
      }
    }

    static void Main(string[] args)
    {
      try {
        CheckNegative(-7);
      }
      catch(NegativeError ex) {
        Console.WriteLine(ex);
      }
    }
}



 
/*
run:
 
NegativeError: Negative not allowed
  at Program.CheckNegative (System.Int32 n) [0x00011] in <83cce1a405bb4cfdbe7efa2843fa4ef6>:0 
  at Program.Main (System.String[] args) [0x00000] in <83cce1a405bb4cfdbe7efa2843fa4ef6>:0 
 
*/

 



answered Dec 19, 2020 by avibootz

Related questions

1 answer 134 views
134 views asked Jan 19, 2022 by avibootz
1 answer 178 views
1 answer 90 views
1 answer 151 views
1 answer 98 views
1 answer 90 views
...