Throw Null reference Exception

image_pdfimage_print
   

using System;
using System.Collections;

class Class1 {
   static void Main(string[] args) {
    Exception objException = new Exception();

    try {
      objException = null;
      Console.WriteLine(objException.Message);
    } catch (Exception objE) {
      Console.WriteLine(objE.ToString());
    }
   }
}