2016-07-16 00:58:25 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* AssetAccountName.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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Import\Converter;
|
|
|
|
|
|
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class AssetAccountName
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Import\Converter
|
|
|
|
*/
|
|
|
|
class AssetAccountName extends BasicConverter implements ConverterInterface
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $value
|
|
|
|
*
|
|
|
|
* @throws FireflyException
|
|
|
|
*/
|
|
|
|
public function convert($value)
|
|
|
|
{
|
2016-07-16 01:25:39 -05:00
|
|
|
throw new FireflyException('Importer with name AssetAccountName has not yet been configured.');
|
2016-07-16 00:58:25 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|