webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
symfony
/
process
/
Exception
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ExceptionInterface.php
0.439KB
edt
ren
InvalidArgumentExceptio
...
0.484KB
edt
ren
LogicException.php
0.455KB
edt
ren
ProcessFailedException.php
1.434KB
edt
ren
ProcessSignaledExceptio
...
0.931KB
edt
ren
ProcessTimedOutExceptio
...
1.706KB
edt
ren
RunProcessFailedExcepti
...
0.65KB
edt
ren
RuntimeException.php
0.47KB
edt
ren
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Process\Exception; use Symfony\Component\Process\Process; /** * Exception that is thrown when a process has been signaled. * * @author Sullivan Senechal <soullivaneuh@gmail.com> */ final class ProcessSignaledException extends RuntimeException { private Process $process; public function __construct(Process $process) { $this->process = $process; parent::__construct(sprintf('The process has been signaled with signal "%s".', $process->getTermSignal())); } public function getProcess(): Process { return $this->process; } public function getSignal(): int { return $this->getProcess()->getTermSignal(); } }