You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
4 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package kratos.errors;
|
||
|
|
||
|
option go_package = "github.com/go-kratos/kratos/v2/errors;errors";
|
||
|
option java_multiple_files = true;
|
||
|
option java_package = "com.github.kratos.errors";
|
||
|
option objc_class_prefix = "KratosErrors";
|
||
|
|
||
|
message Error {
|
||
|
int32 code = 1;
|
||
|
string message = 2;
|
||
|
// error details
|
||
|
string reason = 3;
|
||
|
string domain = 4;
|
||
|
map<string, string> metadata = 5;
|
||
|
};
|