X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmException.h;h=c92034ecf514f02dcda024be585c8705ac85a85d;hb=4d992954520d43c6f2fb555b7cd721574978c23a;hp=ff0fa67d7758c686acab544e55fa958be07bac45;hpb=ba78e6c6d47d6db1528e8e88e5ebde7296a26692;p=gdcm.git diff --git a/src/gdcmException.h b/src/gdcmException.h index ff0fa67d..c92034ec 100644 --- a/src/gdcmException.h +++ b/src/gdcmException.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmException.h,v $ Language: C++ - Date: $Date: 2004/12/03 20:16:58 $ - Version: $Revision: 1.19 $ + Date: $Date: 2005/02/11 16:36:52 $ + Version: $Revision: 1.22 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,16 +29,15 @@ namespace gdcm { //----------------------------------------------------------------------------- -/* - * Any exception thrown in the gdcm library +/** + * \brief Any exception thrown in the gdcm library */ class GDCM_EXPORT Exception : public std::exception { public: /* - * Builds an exception with minimal information: name of the thrower - * method and error message - * + * \brief Builds an exception with minimal information: name of the thrower + * method and error message * @param from name of the thrower * @param error error description string */ @@ -69,7 +68,7 @@ public: /// returns exception name string operator const char *() const throw(); - friend std::ostream& operator<<(std::ostream &os, const Exception &e); + friend std::ostream &operator<<(std::ostream &os, const Exception &e); protected: /// error message part 1 @@ -80,8 +79,8 @@ protected: //----------------------------------------------------------------------------- -/* - * File error exception thrown in the gdcm library +/** + * \brief File error exception thrown in the gdcm library */ class GDCM_EXPORT FileError : public Exception {