Files
Towards/modules/io/include/exception/ByteBufferOverflowException.hpp
Martin Slachta e6dd954ded #1 - quicr module
2026-08-01 13:48:50 +02:00

14 lines
217 B
C++

#pragma once
#include <exception>
namespace tw::net {
class ByteBufferOverflowException : public std::exception {
const char* what() const noexcept override {
return "Byte buffer overflow";
}
};
}