14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class BookingConflictException extends RuntimeException
|
|
{
|
|
public function __construct(string $message = 'Ce créneau est déjà réservé.')
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|