for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright © Vaimo Group. All rights reserved.
* See LICENSE_VAIMO.txt for license details.
*/
namespace Vaimo\ComposerPatches\Exceptions;
class PatchFailureException extends \Exception
{
* @var string
private $failedPatchPath;
* @param string $failedPatchPath
* @param string $message
* @param \Exception|null $previous
public function __construct($failedPatchPath, $message = '', $previous = null)
parent::__construct($message, 0, $previous);
$this->failedPatchPath = $failedPatchPath;
}
public function getFailedPatchPath()
return $this->failedPatchPath;