the system.systemexception class is the base class for all predefined system exception in c#?
NO system.systemexception is not the base class
The base class is System.Exception
To throw a new exception just create an instance of that object
and use the throw keyword before it
For example:
throw new Exception("Your message ANYTHING");