]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- add XAttributesException
authorOndrej Kozina <okozina@redhat.com>
Wed, 30 Jan 2013 17:31:27 +0000 (18:31 +0100)
committerOndrej Kozina <okozina@redhat.com>
Wed, 27 Feb 2013 16:24:57 +0000 (17:24 +0100)
snapper/Exception.h

index 0043fdd55e0dd1d27201ad1dc6146fdff5c06765..53b4c7e5d334c21cf5166c05869d2dd6e85b4203 100644 (file)
@@ -75,6 +75,11 @@ namespace snapper
        const char* msg;
     };
 
+    struct XAttributesException : public SnapperException
+    {
+        explicit XAttributesException() throw() {}
+        virtual const char* what() const throw() { return "XAttributes error"; }
+    };
 }