Files
Towards/modules/io/include/exception/ByteBufferOverflowException.hpp
T
Martin Slachta f4174eb0c7 #1 - quicr module
2026-08-01 22:43:09 +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";
}
};
}