Catch custom exception and then general exception : try catch « Statement « Visual C++ .NET






Catch custom exception and then general exception

 
#include "stdafx.h"
using namespace System;

ref class MyException : Exception
{
   public:

    virtual property String^ Message
    {
        String^ get() override
        {
           return "You must supply a command-line argument.";
        }
    }
};

int main(array<String^>^ args)
{
     try
     {
         if (args->Length < 1)
         {
            throw gcnew MyException();
         }
         throw gcnew Exception();
     }
     catch (MyException^ e)
     {
           Console::WriteLine("MyException occurred! " + e->Message);
     }
     catch (Exception^ exception)
     {
           Console::WriteLine("Unknown exception!");
     }
}

   
  








Related examples in the same category

1.Catch an Exception with a try/catch Block
2.Catch All exceptions
3.Catch Exception
4.Multi Exception Handling
5.Catch IndexOutOfRangeException
6.Catch IO exception
7.Nested exception catching