summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-03-23 16:06:06 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-03-23 16:06:06 (GMT)
commit8e444296d27ef84e9a0d5f6b78a022996ae49f4a (patch)
tree435c67487656d4a9733a35f70a0eb647bb191aa1 /Swiften
parent846c4b9d2e7ec3214a3b13bdbbce77f70fede515 (diff)
downloadswift-8e444296d27ef84e9a0d5f6b78a022996ae49f4a.zip
swift-8e444296d27ef84e9a0d5f6b78a022996ae49f4a.tar.bz2
Forgotten file for TLSError patch
Diffstat (limited to 'Swiften')
-rw-r--r--Swiften/TLS/TLSError.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/Swiften/TLS/TLSError.h b/Swiften/TLS/TLSError.h
new file mode 100644
index 0000000..f9ed8f7
--- /dev/null
+++ b/Swiften/TLS/TLSError.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2012 Kevin Smith
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include <boost/shared_ptr.hpp>
+#include <Swiften/Base/Error.h>
+
+namespace Swift {
+ class TLSError : public Error {
+ public:
+ typedef boost::shared_ptr<TLSError> ref;
+
+ enum Type {
+ UnknownError,
+ CertificateCardRemoved
+ };
+
+ TLSError(Type type = UnknownError) : type(type) {}
+
+ Type getType() const {
+ return type;
+ }
+
+ private:
+ Type type;
+ };
+}