packageprocess_errors.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*##############################################################################
  2. HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. ############################################################################## */
  13. #ifndef PACKAGEPROCESS_ERRORS_H
  14. #define PACKAGEPROCESS_ERRORS_H
  15. #include "errorlist.h"
  16. #define PKG_NAME_EXISTS PKG_PROCESS_ERROR_START
  17. #define PKG_MISSING_PARAM PKG_PROCESS_ERROR_START+1
  18. #define PKG_DALI_LOOKUP_ERROR PKG_PROCESS_ERROR_START+2
  19. #define PKG_MISSING_DALI_LOOKUP_IP PKG_PROCESS_ERROR_START+3
  20. #define PKG_TARGET_NOT_DEFINED PKG_PROCESS_ERROR_START+4
  21. #define PKG_ACTIVATE_NOT_FOUND PKG_PROCESS_ERROR_START+5
  22. #define PKG_DEACTIVATE_NOT_FOUND PKG_PROCESS_ERROR_START+6
  23. #define PKG_DELETE_NOT_FOUND PKG_PROCESS_ERROR_START+7
  24. #define PKG_NONE_DEFINED PKG_PROCESS_ERROR_START+8
  25. #define PKG_CREATE_PACKAGESET_FAILED PKG_PROCESS_ERROR_START+9
  26. #define PKG_PACKAGEMAP_NOT_FOUND PKG_PROCESS_ERROR_START+10
  27. #define PKG_LOAD_PACKAGEMAP_FAILED PKG_PROCESS_ERROR_START+11
  28. #endif