Core/PacketIO: Add a validating string helper class for use in packet classes

(cherry picked from commit f2f47f774f)
This commit is contained in:
Shauren
2020-03-18 23:20:11 +01:00
parent def97385cc
commit 3ebfa8cc64
6 changed files with 192 additions and 7 deletions

View File

@@ -53,7 +53,7 @@ public:
class TC_SHARED_API ByteBufferInvalidValueException : public ByteBufferException
{
public:
ByteBufferInvalidValueException(char const* type, size_t pos);
ByteBufferInvalidValueException(char const* type, char const* value);
~ByteBufferInvalidValueException() noexcept = default;
};