Adding exceptions to core
This commit is contained in:
parent
09a77d8bc8
commit
6cd0599e31
3 changed files with 21 additions and 0 deletions
7
src/Exceptions/BenzineConfigurationException.php
Normal file
7
src/Exceptions/BenzineConfigurationException.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ⌬\Exceptions;
|
||||
|
||||
class BenzineConfigurationException extends BenzineException
|
||||
{
|
||||
}
|
||||
7
src/Exceptions/BenzineException.php
Normal file
7
src/Exceptions/BenzineException.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ⌬\Exceptions;
|
||||
|
||||
class BenzineException extends \Exception
|
||||
{
|
||||
}
|
||||
7
src/Exceptions/DbConfigException.php
Normal file
7
src/Exceptions/DbConfigException.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace ⌬\Exceptions;
|
||||
|
||||
class DbConfigException extends BenzineException
|
||||
{
|
||||
}
|
||||
Loading…
Reference in a new issue