Apollo 10.0
自动驾驶开放平台
error_code.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.common;
4
5// Error codes enum for API's categorized by modules.
7 // No error, returns on success.
8 OK = 0;
9
10 // Control module error codes start from here.
16
17 // Canbus module error codes start from here.
24
25 // Localization module error codes start from here.
31
32 // Perception module error codes start from here.
39
40 // Prediction module error codes start from here.
42
43 // Planning module error codes start from here
46
47 // HDMap module error codes start from here
49
50 // Routing module error codes
55
56 // Indicates an input has been exhausted.
58
59 // HTTP request error codes.
62
63 // Relative Map error codes.
64 RELATIVE_MAP_ERROR = 11000; // general relative map error code
66
67 // Driver error codes.
70
71 // Storytelling error codes.
73}
74
75message StatusPb {
76 optional ErrorCode error_code = 1 [default = OK];
77 optional string msg = 2;
78}
syntax
@ CAN_CLIENT_ERROR_OPEN_DEVICE_FAILED