##// END OF EJS Templates
test: show internal exception with batchable rpcs over ssh...
test: show internal exception with batchable rpcs over ssh Differential Revision: https://phab.mercurial-scm.org/D10072

File last commit:

r47174:ca3f73cc default
r47428:fe36ce0f default
Show More
exitcode.rs
10 lines | 214 B | application/rls-services+xml | RustLexer
pub type ExitCode = i32;
/// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
/// Command or feature not implemented by rhg
pub const UNIMPLEMENTED: ExitCode = 252;