System.Exception ex;
try
{
FormletterService.Run()
}
catch(Exception::CLRError)
{
ex = ClrInterop::getLastException();
if (ex != null)
{
ex = ex.get_InnerException();
if (ex != null)
{
throw error(ex.ToString());
}
}
}
No comments:
Post a Comment