Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Call / Exception / CallHandlingException.php
1 <?php
2
3 /*
4  * This file is part of the Behat Testwork.
5  * (c) Konstantin Kudryashov <ever.zet@gmail.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
11 namespace Behat\Testwork\Call\Exception;
12
13 use Behat\Testwork\Call\Call;
14 use RuntimeException;
15
16 /**
17  * Represents exceptions thrown during call handling phase.
18  *
19  * @author Konstantin Kudryashov <ever.zet@gmail.com>
20  */
21 final class CallHandlingException extends RuntimeException implements CallException
22 {
23     /**
24      * @var Call
25      */
26     private $call;
27
28     /**
29      * Initializes exception.
30      *
31      * @param string $message
32      * @param Call   $callable
33      */
34     public function __construct($message, Call $callable)
35     {
36         $this->call = $callable;
37
38         parent::__construct($message);
39     }
40
41     /**
42      * Returns call that caused exception.
43      *
44      * @return Call
45      */
46     public function getCall()
47     {
48         return $this->call;
49     }
50 }