new exception class for when something is not implemented or restricted on purpose

This commit is contained in:
Guillermo Dev
2018-12-01 20:24:25 +01:00
parent 8290415774
commit 86eee92e4a

View File

@@ -0,0 +1,11 @@
<?php
namespace Gbili\Exception;
/**
* Use this in a getter whose property has not been set yet
*/
class BehaviorImplementationRefusedException
extends \Gbili\Exception\Exception
{
}