mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
13 lines
253 B
PHP
13 lines
253 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class KoelPlusRequiredException extends Exception
|
|
{
|
|
public function __construct(string $message = 'This feature is only available in Koel Plus.')
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|