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