* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Behat\Tester\Exception; use Behat\Testwork\Tester\Exception\TesterException; use RuntimeException; /** * Represents a pending exception. * * @author Konstantin Kudryashov */ final class PendingException extends RuntimeException implements TesterException { /** * Initializes pending exception. * * @param string $text */ public function __construct($text = 'TODO: write pending definition') { parent::__construct($text); } }