We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e45b032 + ea56405 commit a1091f7Copy full SHA for a1091f7
shared/src/error/mod.rs
@@ -100,7 +100,8 @@ impl ExitCode {
100
pub const USR_UNHANDLED_MESSAGE: ExitCode = ExitCode::new(22);
101
/// Indicates the actor failed with an unspecified error.
102
pub const USR_UNSPECIFIED: ExitCode = ExitCode::new(23);
103
- // pub const RESERVED_24: ExitCode = ExitCode::new(24);
+ /// Indicates the actor failed a user-level assertion
104
+ pub const USR_ASSERTION_FAILED: ExitCode = ExitCode::new(24);
105
// pub const RESERVED_25: ExitCode = ExitCode::new(25);
106
// pub const RESERVED_26: ExitCode = ExitCode::new(26);
107
// pub const RESERVED_27: ExitCode = ExitCode::new(27);
0 commit comments