mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-27 06:38:03 -05:00
8 lines
137 B
PHP
8 lines
137 B
PHP
<?php
|
|
|
|
class EntriesGetterException extends Exception {
|
|
public function __construct ($message) {
|
|
parent::__construct ($message);
|
|
}
|
|
}
|