13 lines
143 B
PHP
13 lines
143 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Vdlp\RssFetcher\Exceptions;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
|
||
|
|
class SourceNotEnabledException extends Exception
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|