Files

14 lines
217 B
C++
Raw Permalink Normal View History

2026-07-18 14:31:15 +02:00
#pragma once
#include <exception>
namespace tw::net {
class ByteBufferOverflowException : public std::exception {
const char* what() const noexcept override {
return "Byte buffer overflow";
}
};
}