errors.proto 361 B

1234567891011121314151617
  1. syntax = "proto3";
  2. message EditorError {
  3. EditorErrorCode code = 1;
  4. string msg = 2;
  5. }
  6. enum EditorErrorCode {
  7. Unknown = 0;
  8. EditorDBInternalError = 1;
  9. EditorDBConnFailed = 2;
  10. DocNameInvalid = 10;
  11. DocViewIdInvalid = 11;
  12. DocDescTooLong = 12;
  13. DocOpenFileError = 13;
  14. DocFilePathInvalid = 14;
  15. EditorUserNotLoginYet = 100;
  16. }