aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Common/ErrorCode.proto
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-10-04 11:34:57 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-10-04 11:34:57 +0300
commit10ec78ea3dee66328ca50cd7bfbc2c6acd52264b (patch)
treec6422f2b73f0a74923a823da5813f37a323c638c /Software/PMR/Messages/Common/ErrorCode.proto
parent613be9fa6348139fd00ab8144885356ba36f5595 (diff)
downloadTango-10ec78ea3dee66328ca50cd7bfbc2c6acd52264b.tar.gz
Tango-10ec78ea3dee66328ca50cd7bfbc2c6acd52264b.zip
Heater state in diagnostics. new error codes.
Diffstat (limited to 'Software/PMR/Messages/Common/ErrorCode.proto')
-rw-r--r--Software/PMR/Messages/Common/ErrorCode.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/Software/PMR/Messages/Common/ErrorCode.proto b/Software/PMR/Messages/Common/ErrorCode.proto
index 035ff5f4a..51774e6e9 100644
--- a/Software/PMR/Messages/Common/ErrorCode.proto
+++ b/Software/PMR/Messages/Common/ErrorCode.proto
@@ -13,10 +13,20 @@ enum ErrorCode
UNAUTHORIZED_CONNECTION = 4; //Should be returned if no ConnectionRequest with a valid password was made.
CONTINUOUS_RESPONSE_ABORTED = 5; //Should be returned to a continuous response when aborted by the requesting client.
JOB_FAILED = 6;
+ INVALID_PARAMETER = 7;
//IO
INVALID_UPLOAD_ID = 1000; //Returned by FileChunkUploadResponse when the UploadID was not set by FileUploadRequest. Or returned by ExecuteProcessResponse when the UploadID does not exist or has not been completed.
FILE_NOT_FOUND = 1001; //Returned by ExecuteProcessResponse when the FileName was not found.
INVALID_PROCESS_ID = 1002; //Returned by KillProcessResponse when the process id was not found.
FILE_LENGTH_OUT_OF_RANGE = 1003; //Returned by FileChunkUploadResponse when the uploaded file size exceeds the expected Length from FileUploadRequest.
+
+ //Job Failure
+ JOB_UNSPECIFIED_ERROR = 2000;
+ JOB_THREAD_BREAK = 2001;
+ JOB_WINDER_DANCER_FAIL = 2002;
+ JOB_POOLER_DANCER_FAIL = 2003;
+ JOB_FEEDER_DANCER_FAIL = 2004;
+ JOB_OUT_OF_DYE = 2005;
+ JOB_OTHER_ALARM = 2006;
}