<?php class DatabaseException extends RuntimeException { public function __construct(string $message = '', protected int|string $databaseCode = 0, ?Throwable $previous = null) { parent::__construct($message, is_int($databaseCode) ? $databaseCode : 0, $previous); } }
You have javascript disabled. You will not be able to edit any code.