Lggr
Public Member Functions | Protected Attributes | List of all members
PHPUnit\Framework\Exception Class Reference
Inheritance diagram for PHPUnit\Framework\Exception:
Inheritance graph
[legend]
Collaboration diagram for PHPUnit\Framework\Exception:
Collaboration graph
[legend]

Public Member Functions

 __construct ($message='', $code=0, \Exception $previous=null)
 
 getSerializableTrace ()
 
 __toString ()
 
 __sleep ()
 

Protected Attributes

 $serializableTrace
 

Detailed Description

Base class for all PHPUnit Framework exceptions.

Ensures that exceptions thrown during a test run do not leave stray references behind.

Every Exception contains a stack trace. Each stack frame contains the 'args' of the called function. The function arguments can contain references to instantiated objects. The references prevent the objects from being destructed (until test results are eventually printed), so memory cannot be freed up.

With enabled process isolation, test results are serialized in the child process and unserialized in the parent process. The stack trace of Exceptions may contain objects that cannot be serialized or unserialized (e.g., PDO connections). Unserializing user-space objects from the child process into the parent would break the intended encapsulation of process isolation.

See also
http://fabien.potencier.org/article/9/php-serialization-stack-traces-and-exceptions

Member Function Documentation

◆ __toString()

PHPUnit\Framework\Exception::__toString ( )
Returns
string

Reimplemented in PHPUnit\Framework\ExceptionWrapper.

◆ getSerializableTrace()

PHPUnit\Framework\Exception::getSerializableTrace ( )

Returns the serializable trace (without 'args').

Returns
array

The documentation for this class was generated from the following file: