Sulu\Bundle\MarkupBundle\Tag\TagNotFoundException::__construct PHP Method

__construct() public method

public __construct ( string $tagName, integer $type )
$tagName string
$type integer
    public function __construct($tagName, $type)
    {
        parent::__construct(sprintf('Tag "%s" for type "%s" not found', $tagName, $type));
        $this->tagName = $tagName;
        $this->type = $type;
    }