Exception
Domains:
PHP
Introduction
Exception is the base class for all Exceptions in PHP 5, and the base class for all user exceptions in PHP 7.
Before PHP 7, Exception did not implement the Throwable interface.
Class synopsis
Exception implements Throwable {
/* Properties */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* Methods */
public __construct ([ string $message = "" [, int $code = 0 [, Throwable $previous = NULL