PHP 7.0.0 Released

Error

(PHP 7)

Introduction

Error is the base class for all internal PHP error exceptions.

Class synopsis

Error implements Throwable {
/* Inherited methods */
abstract public string Throwable::getMessage ( void )
abstract public int Throwable::getCode ( void )
abstract public string Throwable::getFile ( void )
abstract public int Throwable::getLine ( void )
abstract public array Throwable::getTrace ( void )
abstract public string Throwable::getTraceAsString ( void )
abstract public Throwable Throwable::getPrevious ( void )
abstract public string Throwable::__toString ( void )
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top