Files
Towards/modules/network/include/exception/SocketClosedException.hpp
T

14 lines
211 B
C++
Raw Normal View History

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