| 30 | struct InvalidRemoteAddress : public RemoteMemCopyError |
| 31 | { |
| 32 | const char* what() const noexcept override |
| 33 | { |
| 34 | return "Invalid address in remote process"; |
| 35 | } |
| 36 | }; |
| 37 | |
| 38 | struct InvalidCopiedMemory : public RemoteMemCopyError |
nothing calls this directly
no outgoing calls
no test coverage detected