<?php class MyException extends Exception { function __construct(string $message = "", int $code = 0, Throwable $previous = null) { parent::__construct($message, $code, $previous); $this->code = ['foo']; } } try { throw new MyException(); } catch (Exception $ex) { var_dump($ex); }
You have javascript disabled. You will not be able to edit any code.