16 lines
192 B
PHP
16 lines
192 B
PHP
|
<?php
|
||
|
|
||
|
namespace PicoFeed;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* PicoFeedException Exception
|
||
|
*
|
||
|
* @author Frederic Guillot
|
||
|
* @package exception
|
||
|
*/
|
||
|
abstract class PicoFeedException extends Exception
|
||
|
{
|
||
|
}
|