Files
php-exception/src/Exception/BehaviorImplementationRefusedException.php
2018-12-01 20:25:53 +01:00

14 lines
269 B
PHP

<?php
namespace Gbili\Exception;
/**
* Use this in a behovior that is attempted to being used
* but that should not be, by design or in an attempt to
* enforce best practices
*/
class BehaviorImplementationRefusedException
extends \Gbili\Exception\Exception
{
}