15 lines
171 B
PHP
15 lines
171 B
PHP
|
<?php
|
||
|
|
||
|
namespace PicoFeed;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* PicoFeedException Exception.
|
||
|
*
|
||
|
* @author Frederic Guillot
|
||
|
*/
|
||
|
abstract class PicoFeedException extends Exception
|
||
|
{
|
||
|
}
|