From: Ondrej Kozina Date: Wed, 30 Jan 2013 17:31:27 +0000 (+0100) Subject: - add XAttributesException X-Git-Tag: v0.1.3~18^2~44 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=28ccec77d6511dabd0348fc98ab412aeb9ca5ca2;p=thirdparty%2Fsnapper.git - add XAttributesException --- diff --git a/snapper/Exception.h b/snapper/Exception.h index 0043fdd5..53b4c7e5 100644 --- a/snapper/Exception.h +++ b/snapper/Exception.h @@ -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"; } + }; }