X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FException.hh;h=6b62b68163ac51b6bbaa0c676afe69be5f445974;hb=28275a1a9075ae42dc29aaadc5bc78e6fa204e26;hp=7162040d332c39c3bfc7f7fb833dc34f11dbf8a4;hpb=34378cabd0ef59515f60b8e535d50fd5488c84e2;p=senf.git diff --git a/Utils/Exception.hh b/Utils/Exception.hh index 7162040..6b62b68 100644 --- a/Utils/Exception.hh +++ b/Utils/Exception.hh @@ -109,12 +109,12 @@ namespace senf { public: virtual char const * what() const throw(); ///< Return verbose error description - int code() const; ///< Error code (\c errno number) + int errorNumber() const; ///< Error code (\c errno number) char const * description() const; ///< Error description (strerror() value) bool anyOf(int c0, int c1=0, int c2=0, int c3=0, int c4=0, int c5=0, int c6=0, int c7=0, int c8=0, int c9=0); - ///< \c true, if code() is one of \a c0 ... \a c9 + ///< \c true, if errorNumber() is one of \a c0 ... \a c9 virtual ~SystemException() throw();