blob: b3a95c9f7d893d00496b0873ef9ace43569158c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace PicoFeed\Client;
use PicoFeed\PicoFeedException;
/**
* ClientException Exception.
*
* @author Frederic Guillot
*/
abstract class ClientException extends PicoFeedException
{
}
|