11 lines
156 B
PHP
11 lines
156 B
PHP
|
<?php
|
||
|
|
||
|
namespace Goodby\CSV\Export\Protocol\Exception;
|
||
|
|
||
|
/**
|
||
|
* Throws if it is unable to write CSV file
|
||
|
*/
|
||
|
class IOException extends \RuntimeException
|
||
|
{
|
||
|
}
|