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