Files
BloomPatched/src/DebugServer/Gdb/ResponsePackets/ErrorResponsePacket.hpp
2022-04-06 17:39:21 +01:00

18 lines
420 B
C++

#pragma once
#include "ResponsePacket.hpp"
namespace Bloom::DebugServer::Gdb::ResponsePackets
{
/**
* Error response packet expected by the GDB client, to indicate an error, in response to certain commands.
*/
class ErrorResponsePacket: public ResponsePacket
{
public:
ErrorResponsePacket()
: ResponsePacket(std::vector<unsigned char>{'E', '0', '1'})
{};
};
}