mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-15 09:46:06 +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
|
|
{
|
|
}
|