|
StormByte C++ Library 0.0.9999
StormByte is a comprehensive, cross-platform C++ library aimed at easing system programming, configuration management, logging, and database handling tasks. This library provides a unified API that abstracts away the complexities and inconsistencies of different platforms (Windows, Linux).
|
Exception class for buffer overflow errors. More...
#include <exception.hxx>


Additional Inherited Members | |
Public Member Functions inherited from StormByte::Exception | |
| Exception (const std::string &message) | |
| Constructor. | |
| Exception (std::string &&message) | |
| Constructor. | |
| template<typename... Args> | |
| Exception (std::format_string< Args... > fmt, Args &&... args) | |
Constructor forwards the message to the std::format function. | |
| Exception (const Exception &e) | |
| Copy constructor. | |
| Exception (Exception &&e) noexcept | |
| Move constructor. | |
| virtual | ~Exception () noexcept |
| Destructor. | |
| Exception & | operator= (const Exception &e) |
| Copy assignment operator. | |
| Exception & | operator= (Exception &&e) noexcept |
| Move assignment operator. | |
| virtual const char * | what () const noexcept |
| Gets the exception message. | |
Exception class for buffer overflow errors.
The BufferOverflow exception is thrown when an operation attempts to write more data to a buffer than it can hold. This exception ensures that buffer integrity is maintained by preventing overflows.
Inherits all functionality from the StormByte::Buffer::Exception class.