rust/rhg/src/exitcode.rs
changeset 46445 ca3f73cc3cf4
parent 45049 513b3ef277a3
child 46744 b1f2c2b336ec
equal deleted inserted replaced
46444:6c778d20c8c2 46445:ca3f73cc3cf4
     4 pub const OK: ExitCode = 0;
     4 pub const OK: ExitCode = 0;
     5 
     5 
     6 /// Generic abort
     6 /// Generic abort
     7 pub const ABORT: ExitCode = 255;
     7 pub const ABORT: ExitCode = 255;
     8 
     8 
     9 /// Command not implemented by rhg
     9 /// Command or feature not implemented by rhg
    10 pub const UNIMPLEMENTED_COMMAND: ExitCode = 252;
    10 pub const UNIMPLEMENTED: ExitCode = 252;