/* * Copyright (c) 2012-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include namespace Swift { class SWIFTEN_API TLSError : public Error { public: typedef boost::shared_ptr ref; enum Type { UnknownError, CertificateCardRemoved }; TLSError(Type type = UnknownError) : type(type) {} Type getType() const { return type; } private: Type type; }; }