Error
(PHP 7, PHP 8)
Introduction
Error is the base class for all internal PHP errors.
Class synopsis
Properties
- message
-
The error message
- code
-
The error code
- file
-
The filename where the error happened
- line
-
The line where the error happened
- previous
-
The previously thrown exception
- string
-
The string representation of the stack trace
- trace
-
The stack trace as an array
Table of Contents
- Error::__construct — Construct the error object
- Error::getMessage — Gets the error message
- Error::getPrevious — Returns previous Throwable
- Error::getCode — Gets the error code
- Error::getFile — Gets the file in which the error occurred
- Error::getLine — Gets the line in which the error occurred
- Error::getTrace — Gets the stack trace
- Error::getTraceAsString — Gets the stack trace as a string
- Error::__toString — String representation of the error
- Error::__clone — Clone the error