Partager via


CFileException::GetErrorMessage

Extrait le texte qui décrit une exception.

virtual BOOL GetErrorMessage(
   LPTSTR lpszError,
   UINT nMaxError,
   PUINT pnHelpContext = NULL 
) const;

Paramètres

  • [in, out] lpszError
    Pointeur vers une mémoire tampon qui accepte un message d'erreur.

  • [in] nMaxError
    Le nombre maximal de caractères que la mémoire tampon spécifiée peut contenir.Cela inclut le caractère NULL de fin.

  • [in, out] pnHelpContext
    Pointeur vers un entier non signé qui accepte l'ID de contexte d'aideSi NULL, un ID est retourné.

Valeur de retour

TRUE si la méthode a réussi ; sinon FALSE.

Notes

Si la mémoire tampon spécifiée est trop petite, le message d'erreur est tronqué.

Exemple

L'exemple suivant utilise CFileException::GetErrorMessage :

CFile fileInput;
CFileException ex;

// try to open a file for reading.
// The file will certainly not
// exist because there are too many explicit
// directories in the name.

// if the call to Open() fails, ex will be
// initialized with exception
// information.  the call to ex.GetErrorMessage()
// will retrieve an appropriate message describing
// the error, and we'll add our own text
// to make sure the user is perfectly sure what
// went wrong.

if (!fileInput.Open(_T("\\Too\\Many\\Bad\\Dirs.DAT"), CFile::modeRead, &ex))
{
   TCHAR   szCause[255];
   CString strFormatted;

   ex.GetErrorMessage(szCause, 255);

   // (in real life, it's probably more
   // appropriate to read this from
   //  a string resource so it would be easy to
   // localize)

   strFormatted = _T("The data file could not be opened because of this error: ");
   strFormatted += szCause;

   AfxMessageBox(strFormatted);
}
else
{
   // the file was opened, so do whatever work
   // with fileInput
   // we were planning...

   fileInput.Close();
}

Configuration requise

en-tête : afx.h

Voir aussi

Référence

Classe de CException

Graphique de la hiérarchie

CException::ReportError