Viewing file: ProcessTimedOutException.php (907 B) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Illuminate\Process\Exceptions;
use Illuminate\Contracts\Process\ProcessResult; use Symfony\Component\Process\Exception\ProcessTimedOutException as SymfonyTimeoutException; use Symfony\Component\Process\Exception\RuntimeException;
class ProcessTimedOutException extends RuntimeException { /** * The process result instance. * * @var \Illuminate\Contracts\Process\ProcessResult */ public $result;
/** * Create a new exception instance. * * @param \Symfony\Component\Process\Exception\ProcessTimedOutException $original * @param \Illuminate\Contracts\Process\ProcessResult $result * @return void */ public function __construct(SymfonyTimeoutException $original, ProcessResult $result) { $this->result = $result;
parent::__construct($original->getMessage(), $original->getCode(), $original); } }
|