This is an error 404
There are `0` results
preferences:
192.45 ms | 997 KiB | 7 Q<?php
class Foo extends Exception
{
protected $code = 100;
protected $message = 'Hello';
protected $line = 45;
protected $file = '/path/to/file.php';
}
try {
throw new Foo();
} catch (Foo $e) {
var_dump($e);
}