17 lines
218 B
PHP
17 lines
218 B
PHP
|
<?php
|
||
|
|
||
|
namespace PicoFeed\Reader;
|
||
|
|
||
|
use PicoFeed\PicoFeedException;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* ReaderException Exception
|
||
|
*
|
||
|
* @author Frederic Guillot
|
||
|
* @package Reader
|
||
|
*/
|
||
|
abstract class ReaderException extends PicoFeedException
|
||
|
{
|
||
|
}
|