X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmException.h;h=425ad6b9dfe32182dcf607da8fd568e7899e5306;hb=d0dd94b3bab6007ec04534a451f456ceebd6dca7;hp=1fb07a96e55e3cc1ca7c4fd83403f7a6b9dc26e7;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmException.h b/src/gdcmException.h index 1fb07a96..425ad6b9 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/10/12 04:35:46 $ - Version: $Revision: 1.17 $ + Date: $Date: 2005/01/11 15:15:38 $ + Version: $Revision: 1.21 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,15 +20,17 @@ #define GDCM_EXCEPTION_H #include "gdcmCommon.h" + #include #include #include + namespace gdcm { //----------------------------------------------------------------------------- -/* - * Any exception thrown in the gdcm library +/** + * \brief Any exception thrown in the gdcm library */ class GDCM_EXPORT Exception : public std::exception { @@ -67,7 +69,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 @@ -78,8 +80,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 { @@ -108,7 +110,7 @@ public: /// @param from name of the thrower /// @param error error description string explicit FormatUnexpected(const std::string &from, - const std::string &error = "Unexpected file format") + const std::string &error = "Unexpected file format") throw() : Exception( from, error ) { } }; @@ -124,7 +126,7 @@ public: /// @param from name of the thrower /// @param error error description string explicit FormatError(const std::string &from, - const std::string &error = "Invalid file format") + const std::string &error = "Invalid file format") throw() : FormatUnexpected( from, error ) { } };