|
StormByte C++ Library: Crypto module 0.0.9999
StormByte-Crypto is a StormByte library module for handling cryptographic operations
|
A class representing an exception in the keypair component of the crypto module. More...
#include <exception.hxx>


Public Member Functions | |
| KeyPairException (const std::string &message) | |
Non-templated constructor for plain string messages. This resolves MSVC overload ambiguities when passing const char* or std::string. | |
| template<typename... Args> | |
| KeyPairException (std::format_string< Args... > fmt, Args &&... args) | |
| Constructor. | |
Public Member Functions inherited from StormByte::Crypto::Exception | |
| Exception (const std::string &message) | |
| Constructor. | |
| template<typename... Args> | |
| Exception (const std::string &component, std::format_string< Args... > fmt, Args &&... args) | |
| Constructor. | |
A class representing an exception in the keypair component of the crypto module.
|
inline |
Constructor.
| component | The component where the exception occurred. |
| fmt | The format string for the exception message. |
| args | The arguments for the format string. |