ProcessSignaledException.php 906 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Process\Exception;
  11. use Symfony\Component\Process\Process;
  12. /**
  13. * Exception that is thrown when a process has been signaled.
  14. *
  15. * @author Sullivan Senechal <soullivaneuh@gmail.com>
  16. */
  17. final class ProcessSignaledException extends RuntimeException
  18. {
  19. public function __construct(
  20. private Process $process,
  21. ) {
  22. parent::__construct(\sprintf('The process has been signaled with signal "%s".', $process->getTermSignal()));
  23. }
  24. public function getProcess(): Process
  25. {
  26. return $this->process;
  27. }
  28. public function getSignal(): int
  29. {
  30. return $this->getProcess()->getTermSignal();
  31. }
  32. }