mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-07 18:37:55 +00:00
20 lines
253 B
PHP
20 lines
253 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Created by PhpStorm.
|
||
|
|
* User: sander
|
||
|
|
* Date: 24/10/14
|
||
|
|
* Time: 08:14
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace FireflyIII\Exception;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class NotImplementedException
|
||
|
|
*
|
||
|
|
* @package FireflyIII\Exception
|
||
|
|
*/
|
||
|
|
class NotImplementedException extends \Exception
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|