eZ\Publish\Core\IO\Exception\InvalidBinaryPrefixException::__construct PHP Метод

__construct() публичный Метод

public __construct ( $id, $prefix, $code )
    public function __construct($id, $prefix, $code = 0)
    {
        $this->setMessageTemplate("Argument 'BinaryFile::id' is invalid: '%id%' is wrong value, it does not contain prefix '%prefix%'. Is 'var_dir' config correct?");
        $this->setParameters(['id' => $id, 'prefix' => $prefix]);
        // Parent does not let us set specifc message, so we jump all the way up to root Exception __construct().
        Exception::__construct($this->getBaseTranslation(), $code);
    }
InvalidBinaryPrefixException