💾 Archived View for code.lanterne.chilliet.eu › vendor › mcmic › gemini-server › src › Exception.php captured on 2024-08-18 at 19:26:56.
⬅️ Previous capture (2021-12-17)
-=-=-=-=-=-=-
<?php declare(strict_types=1); namespace MCMic\Gemini; class Exception extends \Exception { public function __toString(): string { return $this->getCode() . ' ' . $this->getMessage() . "\r\n"; } }