X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FEnvironment%2FException%2FEnvironmentBuildException.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FEnvironment%2FException%2FEnvironmentBuildException.php;h=0000000000000000000000000000000000000000;hp=4c3bb92a432b6700dcd7526c14b560081078a400;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Testwork/Environment/Exception/EnvironmentBuildException.php b/vendor/behat/behat/src/Behat/Testwork/Environment/Exception/EnvironmentBuildException.php deleted file mode 100644 index 4c3bb92a4..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Environment/Exception/EnvironmentBuildException.php +++ /dev/null @@ -1,50 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Testwork\Environment\Exception; - -use Behat\Testwork\Suite\Suite; -use RuntimeException; - -/** - * Represents exception thrown during an environment build process. - * - * @author Konstantin Kudryashov - */ -final class EnvironmentBuildException extends RuntimeException implements EnvironmentException -{ - /** - * @var Suite - */ - private $suite; - - /** - * Initializes exception. - * - * @param string $message - * @param Suite $suite - */ - public function __construct($message, Suite $suite) - { - $this->suite = $suite; - - parent::__construct($message); - } - - /** - * Returns suite that caused exception. - * - * @return Suite - */ - public function getSuite() - { - return $this->suite; - } -}