blob: fe871bc79ab0515dee64632f556cfe50d3e0ad57 (
plain)
1
2
3
4
5
6
7
|
//! ref: composer/src/Composer/EventDispatcher/ScriptExecutionException.php
use shirabe_php_shim::RuntimeException;
/// Thrown when a script running an external process exits with a non-0 status code
#[derive(Debug)]
pub struct ScriptExecutionException(pub RuntimeException);
|