blob: 8b30c8dc00833593f21f9794ba537d76079b164d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! ref: composer/vendor/symfony/process/Exception/ProcessSignaledException.php
#[derive(Debug)]
pub struct ProcessSignaledException {
pub message: String,
pub code: i64,
}
impl std::fmt::Display for ProcessSignaledException {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.message)
}
}
impl std::error::Error for ProcessSignaledException {}
|