summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
+ };
+}