mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-14 17:26:10 +01:00
15 lines
199 B
PHP
15 lines
199 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace PicoFeed\Client;
|
||
|
|
|
||
|
|
use PicoFeed\PicoFeedException;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* ClientException Exception.
|
||
|
|
*
|
||
|
|
* @author Frederic Guillot
|
||
|
|
*/
|
||
|
|
abstract class ClientException extends PicoFeedException
|
||
|
|
{
|
||
|
|
}
|