Adding exceptions to core

This commit is contained in:
Greyscale 2020-02-24 15:16:08 +01:00
parent 09a77d8bc8
commit 6cd0599e31
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<?php
namespace ⌬\Exceptions;
class BenzineConfigurationException extends BenzineException
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ⌬\Exceptions;
class BenzineException extends \Exception
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace ⌬\Exceptions;
class DbConfigException extends BenzineException
{
}