Throw Derived Exception : throw « Statement « Visual C++ .NET






Throw Derived Exception

 


#include "stdafx.h"
using namespace System;

ref class MyException : public ApplicationException
{
public:
    MyException( String ^err ); 
};

MyException::MyException(System::String ^err) : ApplicationException(err) 
{
}

void main(){
    for (int i = 0; i < 3; i++){
        try{
            if (i == 0){
                Console::WriteLine("\tCounter equal to 0");
            }
            else if (i == 1)
            {
                throw gcnew MyException("\t**Exception** Counter equal to 1");
            }
            else
            {
                Console::WriteLine("\tCounter greater than 1");
            }
        }
        catch (MyException ^e)
        {
            Console::WriteLine(e->Message);
        }
    }
} 

   
  








Related examples in the same category

1.Rethrow Exception
2.Throw string as exception
3.Throw gcnew exception