vendor/sulu/sulu/src/Sulu/Bundle/MediaBundle/Media/Exception/ImageProxyMediaNotFoundException.php line 14

  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\MediaBundle\Media\Exception;
  11. class ImageProxyMediaNotFoundException extends ImageProxyException
  12. {
  13.     /**
  14.      * @param string $message
  15.      */
  16.     public function __construct($message)
  17.     {
  18.         parent::__construct($messageself::EXCEPTION_CODE_IMAGE_PROXY_MEDIA_NOT_FOUND);
  19.     }
  20. }