mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
10 lines
106 B
PHP
10 lines
106 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
class InvitationNotFoundException extends Exception
|
||
|
{
|
||
|
}
|