X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FException%2FParameterNotFoundException.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FException%2FParameterNotFoundException.php;h=0000000000000000000000000000000000000000;hp=500588438d8072fec24f2443b8601a8a665cdef6;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Testwork/Suite/Exception/ParameterNotFoundException.php b/vendor/behat/behat/src/Behat/Testwork/Suite/Exception/ParameterNotFoundException.php deleted file mode 100644 index 500588438..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Suite/Exception/ParameterNotFoundException.php +++ /dev/null @@ -1,48 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Testwork\Suite\Exception; - -/** - * Represents an exception thrown when user tries to access non-existent suite parameter. - * - * @author Konstantin Kudryashov - */ -final class ParameterNotFoundException extends SuiteException -{ - /** - * @var string - */ - private $parameter; - - /** - * Initializes exception. - * - * @param string $message - * @param string $name - * @param string $parameter - */ - public function __construct($message, $name, $parameter) - { - $this->parameter = $parameter; - - parent::__construct($message, $name); - } - - /** - * Returns parameter that caused exception. - * - * @return string - */ - public function getParameter() - { - return $this->parameter; - } -}