10 lines
122 B
PHP
10 lines
122 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class SlotCapacityExceededException extends RuntimeException
|
|
{
|
|
}
|