| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* League.Csv (https://csv.thephpleague.com) |
| 5 |
* |
| 6 |
* (c) Ignace Nyamagana Butera <nyamsprod@gmail.com> |
| 7 |
* |
| 8 |
* For the full copyright and license information, please view the LICENSE |
| 9 |
* file that was distributed with this source code. |
| 10 |
*/ |
| 11 |
declare (strict_types=1); |
| 12 |
namespace IAWPSCOPED\League\Csv; |
| 13 |
|
| 14 |
use Throwable; |
| 15 |
/** @internal */ |
| 16 |
interface UnableToProcessCsv extends Throwable |
| 17 |
{ |
| 18 |
} |
| 19 |
|