open-orchestra/open-orchestra-display-bundle

View on GitHub
DisplayBundle/Exception/DisplayBlockStrategyNotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\DisplayBundle\Exception;

/**
 * Class DisplayBlockStrategyNotFoundException
 */
class DisplayBlockStrategyNotFoundException extends \Exception
{
    /**
     * @param string $message
     */
    public function __construct($message = "")
    {
        parent::__construct('Strategy not found for this block type : ' . $message);
    }
}