lxcpp: provisioning implementation (part 1)
[platform/core/security/vasum.git] / libs / lxcpp / exception.hpp
index 387e2eb..37fec5a 100644 (file)
@@ -96,6 +96,11 @@ struct ConfigureException: public Exception {
         : Exception(message) {}
 };
 
+struct ProvisionException: public Exception {
+    explicit ProvisionException(const std::string& message = "Provision error")
+        : Exception(message) {}
+};
+
 } // namespace lxcpp
 
 #endif // LXCPP_EXCEPTION_HPP