summaryrefslogtreecommitdiff
path: root/vendor/symfony/console/Exception/RunCommandFailedException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/console/Exception/RunCommandFailedException.php')
-rw-r--r--vendor/symfony/console/Exception/RunCommandFailedException.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/symfony/console/Exception/RunCommandFailedException.php b/vendor/symfony/console/Exception/RunCommandFailedException.php
new file mode 100644
index 0000000..5d87ec9
--- /dev/null
+++ b/vendor/symfony/console/Exception/RunCommandFailedException.php
@@ -0,0 +1,29 @@
1<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Console\Exception;
13
14use Symfony\Component\Console\Messenger\RunCommandContext;
15
16/**
17 * @author Kevin Bond <kevinbond@gmail.com>
18 */
19final class RunCommandFailedException extends RuntimeException
20{
21 public function __construct(\Throwable|string $exception, public readonly RunCommandContext $context)
22 {
23 parent::__construct(
24 $exception instanceof \Throwable ? $exception->getMessage() : $exception,
25 $exception instanceof \Throwable ? $exception->getCode() : 0,
26 $exception instanceof \Throwable ? $exception : null,
27 );
28 }
29}