added an exception class for my ULE decoder
[senf.git] / Utils / Exception.hh
index d7e86d5..37f18d3 100644 (file)
@@ -56,7 +56,7 @@ namespace senf {
     public:
         explicit SystemException(int err); ///< SystemException without error lokus info
                                         /**< \param[in] err error number (the errno value) */
-        SystemException(char const * where, int err); ///< SystemException with error lokus info
+        SystemException(char const * where, int err); ///< SystemException with error location info
                                         /**< \param[in] where description of error origin
                                              \param[in] err error number (the errno value) */
 
@@ -71,6 +71,8 @@ namespace senf {
         std::string buffer_;
     };
 
+    enum NoThrow_t { nothrow };
+
 }
 
 ///////////////////////////////hh.e////////////////////////////////////////
@@ -87,4 +89,5 @@ namespace senf {
 // indent-tabs-mode: nil
 // ispell-local-dictionary: "american"
 // compile-command: "scons -u test"
+// comment-column: 40
 // End: