11 lines
157 B
PHP
11 lines
157 B
PHP
|
<?php
|
||
|
|
||
|
namespace Goodby\CSV\Import\Protocol\Exception;
|
||
|
|
||
|
/**
|
||
|
* Throws if csv file not found
|
||
|
*/
|
||
|
class CsvFileNotFoundException extends \RuntimeException
|
||
|
{
|
||
|
}
|