mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-16 10:16:07 +01:00
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
|
||
|
|
{
|
||
|
|
}
|