API16

JError/addToStack: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 39: Line 39:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=addToStack
  category=addToStack
  category=JError
  category=JError
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:36, 25 March 2017

Description

Method to add non-JError thrown JExceptions to the JError stack for debugging purposes


<! removed transcluded page call, red link never existed >

Syntax

static addToStack(JException &$e)
Parameter Name Default Value Description

Returns

void

Defined in

libraries/joomla/error/error.php

Importing

jimport( 'joomla.error.error' );

Source Body

public static function addToStack(JException &$e) {
        JError::$stack[0][] = &$e;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples