mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Exceptions.
This commit is contained in:
parent
1bd02529e0
commit
a92efbc55f
14
app/Exception/FireflyException.php
Normal file
14
app/Exception/FireflyException.php
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace FireflyIII\Exception;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class FireflyException
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Exception
|
||||||
|
*/
|
||||||
|
class FireflyException extends \Exception
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
13
app/Exception/NotImplementedException.php
Normal file
13
app/Exception/NotImplementedException.php
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
namespace FireflyIII\Exception;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class NotImplementedException
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Exception
|
||||||
|
*/
|
||||||
|
class NotImplementedException extends \Exception
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
12
app/Exception/ValidationException.php
Normal file
12
app/Exception/ValidationException.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
namespace FireflyIII\Exception;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class ValidationException
|
||||||
|
*
|
||||||
|
* @package FireflyIII\Exception
|
||||||
|
*/
|
||||||
|
class ValidationException extends \Exception
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user