mirror of
https://github.com/koel/koel
synced 2024-12-25 20:13:06 +00:00
10 lines
122 B
PHP
10 lines
122 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use LogicException;
|
||
|
|
||
|
class UserProspectUpdateDeniedException extends LogicException
|
||
|
{
|
||
|
}
|