From 011694f28a64c24e4ec55ba58a8c476c3d2bb513 Mon Sep 17 00:00:00 2001 From: Mateusz Cegielka Date: Tue, 14 Jul 2020 12:05:40 +0200 Subject: [PATCH] Remove unused CynaraException Change-Id: Iad9f8cafc71fc8ecbbcf7e5517845bdd109c234c --- src/common/exception/CynaraException.h | 47 ---------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 src/common/exception/CynaraException.h diff --git a/src/common/exception/CynaraException.h b/src/common/exception/CynaraException.h deleted file mode 100644 index af7993a..0000000 --- a/src/common/exception/CynaraException.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2016 Samsung Electronics Co. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License - */ -/** - * @file src/common/CynaraException.h - * @author Oskar Świtalski - * @brief Declaration of CynaraException - */ - -#pragma once - -#include -#include - -#include - -#include "Exception.h" - -namespace AskUser { - -class CynaraException : public Exception -{ -public: - CynaraException(const std::string &msg, int err) { - static const char *time2Die = "cynara_strerror error ;)"; - static char strerror[BUFSIZ]; - - std::string error = cynara_strerror(err, strerror, sizeof(strerror)) == CYNARA_API_SUCCESS ? - strerror : time2Die; - - m_msg = msg + ": " + error; - } -}; - -} /* namespace AskUser */ -- 2.7.4