blob: f5901010c6e0b5a180b5ef4548fd22eac6f9ba8c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?php
namespace PHPGit\Exception;
/**
* @author Kazuyuki Hayashi <hayashi@valnur.net>
*/
class GitException extends \Exception
{
/**
* @var string
*/
protected $commandLine;
/**
* Construct the exception. Note: The message is NOT binary safe.
*
* @param string $message [optional] The Exception message to throw.
* @param int $code [optional] The Exception code.
* @param string $commandLine [optional] Command-line
* @param \Exception $previous [optional] The previous exception used for the exception chaining. Since 5.3.0
*/
public function __construct($message = "", $code = 0, $commandLine = null, \Exception $previous = null)
{
parent::__construct($message, $code, $previous);
$this->commandLine = $commandLine;
}
/**
* @return null|string
*/
public function getCommandLine()
{
return $this->commandLine;
}
}
|