14 lines
269 B
PHP
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
|
|
{
|
|
|
|
}
|