| Current Path : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/Exception/ |
| Current File : /var/www/html/dyna-hr/vendor/codeception/base/src/Codeception/Exception/ElementNotFound.php |
<?php
namespace Codeception\Exception;
use Codeception\Util\Locator;
class ElementNotFound extends \PHPUnit_Framework_AssertionFailedError
{
public function __construct($selector, $message = null)
{
$selector = Locator::humanReadableString($selector);
parent::__construct($message . " element with $selector was not found.");
}
}