mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-26 06:07:55 -05:00
8 lines
128 B
PHP
8 lines
128 B
PHP
<?php
|
|
|
|
class FeedException extends Exception {
|
|
public function __construct ($message) {
|
|
parent::__construct ($message);
|
|
}
|
|
}
|