Friday, September 4, 2020

HOW TO GET ERROR MESSAGE IN TRY CATCH

 System.Exception exception;

try
{

}
catch(Exception::CLRError)
{
exception = CLRInterop::getLastException();
while(exception)
{
error( exception.get_Message() );
exception = exception.get_InnerException();
}
throw Exception::Error;
}

No comments:

Post a Comment