tangra logo
   
[ class tree: tangra_lib ] [ index: tangra_lib ] [ all elements ]
 

Interface: I_Exception_Listener

Source Location: /interfaces/i_exception_listener.class.php

Interface I_Exception_Listener

Interface Overview

When implemented shows that class can be registered in Exception_Handler

Exception listeners are objects that are registered in Exception_Handler. Each exception is send to all listeners and they may take some action. Example for such listener is Exception_Listener_Screeen which prints the exception on the screen. Other potential examples are sending the exception to other server, etc.

Located in /interfaces/i_exception_listener.class.php [line 26]



		
		
		
		

Methods

[ Top ]
Method Summary
void   error()   Exception_Handler will call this method to send the exception ot listener

[ Top ]
Methods
error  [line 33]

  void error( $e  )

Exception_Handler will call this method to send the exception ot listener

Parameters:
Exception   $e: 

API Tags:
Access:  public


[ Top ]