Skip to main content

virtuoso_cli/
exit_codes.rs

1pub const SUCCESS: i32 = 0;
2pub const GENERAL_ERROR: i32 = 1;
3pub const USAGE_ERROR: i32 = 2;
4pub const NOT_FOUND: i32 = 3;
5pub const PERMISSION_DENIED: i32 = 4;
6pub const CONFLICT: i32 = 5;
7pub const DRY_RUN_OK: i32 = 10;