initial commit

This commit is contained in:
Guillermo Dev
2018-12-01 12:08:22 +01:00
commit a00aaa037c
5 changed files with 1535 additions and 0 deletions

8
src/Exception/Exception.php Executable file
View File

@@ -0,0 +1,8 @@
<?php
namespace Gbili\Exception;
class Exception
extends \Exception
{
}

View File

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