Keypop Calypso Crypto Symmetric C++ API 0.1.1
Reference Calypso Crypto Symmetric API for C++
SymmetricCryptoException.hpp
Go to the documentation of this file.
1/**************************************************************************************************
2 * Copyright (c) 2024 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * This program and the accompanying materials are made available under the *
5 * terms of the MIT License which is available at https://opensource.org/licenses/MIT. *
6 * *
7 * SPDX-License-Identifier: MIT *
8 **************************************************************************************************/
9
10#pragma once
11
12#include <memory>
13#include <stdexcept>
14#include <string>
15
16namespace keypop {
17namespace calypso {
18namespace crypto {
19namespace symmetric {
20
26class SymmetricCryptoException final : std::exception {
27public:
32 explicit SymmetricCryptoException(const std::string& message)
33 : std::exception() {
34 (void)message;
35 }
36
45 const std::string& message, const std::shared_ptr<std::exception> cause)
46 : std::exception(*cause) {
47 (void)message;
48 }
49};
50
51} /* namespace symmetric */
52} /* namespace crypto */
53} /* namespace calypso */
54} /* namespace keypop */
SymmetricCryptoException(const std::string &message, const std::shared_ptr< std::exception > cause)