Comus Party 1.0.0
Application web de mini-jeux en ligne
Chargement...
Recherche...
Aucune correspondance
GameUnavailableException.php
Aller à la documentation de ce fichier.
1<?php
10
11namespace ComusParty\App\Exceptions;
12
13use Exception;
14use Throwable;
15
20class GameUnavailableException extends Exception
21{
22 public function __construct(string $message = "", int $code = 503, ?Throwable $previous = null)
23 {
24 parent::__construct($message, $code, $previous);
25 }
26
27 public function __toString()
28 {
29 return __CLASS__ . ": [$this->code]: $this->message\n";
30 }
31}
__construct(string $message="", int $code=503, ?Throwable $previous=null)