12 lines
178 B
PHP
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
|
|
{
|
|
|
|
}
|