af7993a7c5876139ba54f17a3ccfd59a82ca178b
[platform/core/security/askuser.git] / src / common / exception / CynaraException.h
1 /*
2  *  Copyright (c) 2016 Samsung Electronics Co.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 /**
17  * @file        src/common/CynaraException.h
18  * @author      Oskar Ĺšwitalski <o.switalski@samsung.com>
19  * @brief       Declaration of CynaraException
20  */
21
22 #pragma once
23
24 #include <exception>
25 #include <string>
26
27 #include <cynara-error.h>
28
29 #include "Exception.h"
30
31 namespace AskUser {
32
33 class CynaraException : public Exception
34 {
35 public:
36     CynaraException(const std::string &msg, int err) {
37         static const char *time2Die = "cynara_strerror error ;)";
38         static char strerror[BUFSIZ];
39
40         std::string error = cynara_strerror(err, strerror, sizeof(strerror)) == CYNARA_API_SUCCESS ?
41                                                                                 strerror : time2Die;
42
43         m_msg = msg + ": " + error;
44     }
45 };
46
47 } /* namespace AskUser */