occlum/tools/copy_bom/src/error.rs
2022-09-28 16:51:42 +08:00

11 lines
441 B
Rust

//! This file defines error number to indicate different errors
pub static FILE_NOT_EXISTS_ERROR: i32 = -1;
pub static COPY_FILE_ERROR: i32 = -2;
pub static INVALID_BOM_FILE_ERROR: i32 = -3;
pub static CREATE_DIR_ERROR: i32 = -4;
pub static CREATE_SYMLINK_ERROR: i32 = -5;
pub static COPY_DIR_ERROR: i32 = -6;
pub static INCORRECT_HASH_ERROR: i32 = -7;
pub static MISSING_LIBRARY_ERROR: i32 = -8;
pub static RSYNC_NOT_FOUND_ERROR: i32 = -9;