Some Doxygen comments.
[libsub.git] / src / exceptions.h
index 5e784ee9d28ae2d2c313c2c7766f0c78e5733de8..f2f1246c47a56864dd30c0b64283ab1f91b2775d 100644 (file)
@@ -22,6 +22,9 @@
 
 namespace sub {
 
+/** @class XMLError
+ *  @brief An error raised when reading an XML file.
+ */
 class XMLError : public std::exception
 {
 public:
@@ -37,7 +40,10 @@ private:
        /** error message */
        std::string _message;
 };
-       
+
+/** @class STLError
+ *  @brief An error raised when reading a binary STL file.
+ */
 class STLError : public std::exception
 {
 public: