Files
rr3-apk/decompiled/resources/gatewayprotocol/v1/error.proto
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

14 lines
419 B
Protocol Buffer

syntax = "proto3";
package gatewayprotocol.v1;
option swift_prefix = "Gateway";
// Error is a general error returned from a service. It can be returned via the payload
// to indicate that an error occurred within the service itself, or alongside the response
// to indicate failure to communicate with that service (reachability, timeout, etc.)
message Error {
// The text of the error.
string error_text = 2;
}