Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an error proto to be returned by snuba RPC #47

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions proto/sentry_protos/snuba/v1/error.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
syntax = "proto3";

package sentry_protos.snuba.v1;

import "google/protobuf/any.proto";

message Error {
// The HTTP status code corresponding to this error
int32 code = 1;

// The developer-facing message
string message = 2;

// Additional error information
repeated google.protobuf.Any details = 3;
}
Loading