Exception
Introduction
Exception is the base class for all Exceptions.
Class synopsis
Exception
{
/* Properties */
/* Methods */
public Exception::__construct
([ string $message = ""
[, int $code = 0
[, Exception $previous = NULL
]]] )
}Properties
- message
-
The exception message
- code
-
The Exception code
- file
-
The filename where the exception was created
- line
-
The line where the exception was created
Table of Contents
- Exception::__construct - Construct the exception
- Exception::getMessage - Gets the Exception message
- Exception::getPrevious - Returns previous Exception
- Exception::getCode - Gets the Exception code
- Exception::getFile - Gets the file in which the exception occurred
- Exception::getLine - Gets the line in which the exception occurred
- Exception::getTrace - Gets the stack trace
- Exception::getTraceAsString - Gets the stack trace as a string
- Exception::__toString - String representation of the exception
- Exception::__clone - Clone the exception




