Liquid XML Data Binder (C++, Java, VB6) / Reference / C++ / Reference / CLtException / C++ GetFullMessage
In This Topic
    C++ GetFullMessage
    In This Topic
    std::tstring GetFullMessage() const;
      Property Description  
        Returns The full message from the exception.  
        Description Gets the error message stored against the exception  
        Remarks This function will get the error message from this exception, and recurse through all the child exceptions (inner exceptions) appending error messages from them.  
        Example try
    {
        // create an instance of the class to load the XML file into
        ElmSequence::CElmSequencePtr spElm = ElmSequence::CElmSequence::CreateInstance();
        ElmSequence::CBasicElementPtr spBasElm = ElmSequence::CBasicElement::CreateInstance();

        spElm->SetBasicElement(spBasElm);
        spElm->GetBasicElement()->SetStringElm(_T("Test Data"));
    }
    catch (CLtException& e)
    {
        // Note : exceptions are likely to contain inner exceptions
        // that provide further detail about the error, GetFullMessage
        // concatantes the messages from them all.
        _tprintf(_T("Error - %s\n"), e.GetFullMessage().c_str());
    }