* This file is part of the eZ Publish Kernel package.
5
*
6
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
* @license For full copyright and license information view LICENSE file distributed with this source code.
8
*/
9
namespace eZ\Publish\Core\IO\Exception;
10
11
use Exception;
12
13
class InvalidBinaryPrefixException extends InvalidBinaryFileIdException
14
{
15
public function __construct($id, $prefix, $code = 0)
16
{
17
$this->setMessageTemplate("Argument 'BinaryFile::id' is invalid: '%id%' is wrong value, it does not contain prefix '%prefix%'. Is 'var_dir' config correct?");