StormByte C++ Library: Crypto module 1.0.0
StormByte-Crypto is a StormByte library module for handling cryptographic operations
Loading...
Searching...
No Matches
exception.hxx
1#pragma once
2
3#include <StormByte/crypto/visibility.h>
4#include <StormByte/exception.hxx>
5
10namespace StormByte::Crypto {
15 class STORMBYTE_CRYPTO_PUBLIC Exception: public StormByte::Exception {
16 public:
21 using StormByte::Exception::Exception;
22 };
23}
A class representing an exception in the crypto module.
Definition exception.hxx:15