vendor/sulu/sulu/src/Sulu/Bundle/MediaBundle/Media/Exception/ImageProxyMediaNotFoundException.php line 14
<?php
/*
* This file is part of Sulu.
*
* (c) Sulu GmbH
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Sulu\Bundle\MediaBundle\Media\Exception;
class ImageProxyMediaNotFoundException extends ImageProxyException
{
/**
* @param string $message
*/
public function __construct($message)
{
parent::__construct($message, self::EXCEPTION_CODE_IMAGE_PROXY_MEDIA_NOT_FOUND);
}
}