Sulu\Bundle\ResourceBundle\Resource\Exception\ConditionTypeMismatchException::__construct PHP Method

__construct() public method

public __construct ( string $id, integer $value, integer $type )
$id string
$value integer
$type integer
    public function __construct($id, $value, $type)
    {
        $this->value = $value;
        $this->id = $id;
        $this->type = $type;
        parent::__construct('The condition with id ' . $id . ' the value "' . $value . '" does not match the type ' . $type, 0);
    }
ConditionTypeMismatchException