chill-bundles/src/Bundle/ChillMainBundle/Workflow/Exception/HandlerNotFoundException.php
2022-01-24 13:17:46 +00:00

19 lines
345 B
PHP

<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\MainBundle\Workflow\Exception;
use RuntimeException;
class HandlerNotFoundException extends RuntimeException
{
}