14 lines
259 B
PHP
14 lines
259 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class MachineNotAvailableException extends RuntimeException
|
|
{
|
|
public function __construct(string $message = 'La machine n\'est pas disponible.')
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|