Skip to content

Commit a86f8ff

Browse files
committed
Refatored GetSchemaExceptions to return Exceptions with code and message
1 parent 3f3958a commit a86f8ff

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

common/concept.proto

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,16 @@ message ConceptManager {
9999
message GetSchemaExceptions {
100100
message Req {}
101101
message Res {
102-
repeated string exceptions = 1;
102+
repeated Exceptions exceptions = 1;
103103
}
104104
}
105105
}
106106

107+
message Exceptions {
108+
string code = 1;
109+
string message = 2;
110+
}
111+
107112
message Concept {
108113
oneof concept {
109114
Thing thing = 1;

0 commit comments

Comments
 (0)