Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ProcessFailedException.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Process\Exception;
13
14 use Symfony\Component\Process\Process;
15
16 /**
17 * Exception for failed processes.
18 *
19 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
20 */
21 class ProcessFailedException extends RuntimeException
22 {
23 private $process;
24
25 public function __construct(Process $process)
26 {
27 if ($process->isSuccessful()) {
28 throw new InvalidArgumentException('Expected a failed process, but the given process was successful.');
29 }
30
31 $error = sprintf('The command "%s" failed.'."\n\nExit Code: %s(%s)\n\nWorking directory: %s",
32 $process->getCommandLine(),
33 $process->getExitCode(),
34 $process->getExitCodeText(),
35 $process->getWorkingDirectory()
36 );
37
38 if (!$process->isOutputDisabled()) {
39 $error .= sprintf("\n\nOutput:\n================\n%s\n\nError Output:\n================\n%s",
40 $process->getOutput(),
41 $process->getErrorOutput()
42 );
43 }
44
45 parent::__construct($error);
46
47 $this->process = $process;
48 }
49
50 public function getProcess()
51 {
52 return $this->process;
53 }
54 }
55