X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmException.h;h=3b5c7d2e20c01bbad3d711cee7cdccef65e2ff6e;hb=fa8fa610de8d935491343df2d8a543ff6fdb6e69;hp=b1875b5880a8840c0b8bbcd2660aabff9916f6fc;hpb=0fd97a2f44764117b637de53e09b8a329ca133f8;p=gdcm.git diff --git a/src/gdcmException.h b/src/gdcmException.h index b1875b58..3b5c7d2e 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/11/04 18:14:34 $ - Version: $Revision: 1.18 $ + Date: $Date: 2005/09/02 07:10:03 $ + Version: $Revision: 1.23 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -20,23 +20,24 @@ #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 { 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 */ @@ -46,28 +47,24 @@ public: /** * \brief virtual destructor makes this class dynamic */ - virtual ~Exception() throw() {}; + virtual ~Exception() throw() {} /// exception caught within exception class: print error message and die static void fatal(const char *from) throw(); /// returns error message - const std::string &getError() const throw() { - return Error; - } + const std::string &getError() const throw() { return Error;} /// try to discover this (dynamic) class name virtual std::string getName() const throw(); /// returns exception name string (overloads std::exception::what) - virtual const char *what() const throw() { - return (const char *) *this; - } + virtual const char *what() const throw() { return (const char *) *this;} /// 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 +75,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 {