| 1 | <?php declare(strict_types=1); |
||
| 12 | class RunException extends Exception |
||
| 13 | { |
||
| 14 | private $hostname; |
||
| 15 | private $command; |
||
| 16 | private $exitCode; |
||
| 17 | private $output; |
||
| 18 | private $errorOutput; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 36 | |||
| 37 | public function getHostname(): string |
||
| 41 | |||
| 42 | public function getCommand(): string |
||
| 46 | |||
| 47 | public function getExitCode(): int |
||
| 51 | |||
| 52 | public function getExitCodeText(): string |
||
| 56 | |||
| 57 | public function getOutput(): string |
||
| 61 | |||
| 62 | public function getErrorOutput(): string |
||
| 66 | } |
||
| 67 |