2015-02-06 12:31:38 -06:00
|
|
|
<?php
|
2016-05-20 04:59:54 -05:00
|
|
|
/**
|
|
|
|
* FireflyException.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2015-02-07 18:15:15 -06:00
|
|
|
namespace FireflyIII\Exceptions;
|
2015-02-06 12:31:38 -06:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class FireflyException
|
|
|
|
*
|
2015-02-07 18:15:15 -06:00
|
|
|
* @package FireflyIII\Exceptions
|
2015-02-06 12:31:38 -06:00
|
|
|
*/
|
|
|
|
class FireflyException extends \Exception
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|