Files
php-exception/src/Exception/GettingBeforeSettingException.php
Guillermo Dev a00aaa037c initial commit
2018-12-01 12:08:22 +01:00

12 lines
178 B
PHP

<?php
namespace Gbili\Exception;
/**
* Use this in a getter whose property has not been set yet
*/
class GettingBeforeSettingException
extends \Gbili\Exception\Exception
{
}