silverorange Code


Swat.SwatErrorDisplayer
/Swat/SwatErrorDisplayer.php at line 19

Class SwatErrorDisplayer

SwatErrorDisplayer

public abstract class SwatErrorDisplayer

Abstract base class for displaying SwatError objects

A custom error displayer can be used to change how uncaught errors are displayed in an application. For example, you may want to display errors in a separate file or display them using different XHTML markup.

Copyright:
2006 silverorange
License:
http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
See Also:
SwatError::setDisplayer()

Method Summary
abstract void

display(mixed e)

Displays a SwatError.

Method Detail

/Swat/SwatErrorDisplayer.php at line 28

display

public abstract void display(mixed e)

Displays a SwatError

This is called by SwatError::process().


silverorange Code