Files
Towards/modules/io/include/exception/ByteBufferOverflowException.hpp
T

14 lines
217 B
C++
Raw 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";
}
};
}