1#!/usr/bin/env python 2# -*- coding: utf-8 -*- 3 4# Copyright (c) 2020-2021 Huawei Device Co., Ltd. 5# 6# HDF is dual licensed: you can use it either under the terms of 7# the GPL, or the BSD license, at your option. 8# See the LICENSE file in the root of this repository for complete details. 9 10 11class CommandErrorCode(object): 12 MESSAGE_FORMAT_WRONG = 1001 13 INTERFACE_ERROR = 1002 14 TARGET_NOT_EXIST = 1003 15 TARGET_ALREADY_EXIST = 1004 16 FILE_FORMAT_WRONG = 1005 17 UNKNOWN_ERROR = 1111 18