JavaScript Editor Javascript debugger     Website design 


satellite_caught_exception

See if an exception was caught from the previous function (PHP 4 >= 4.0.3)
bool satellite_caught_exception ( )

Warning:

This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change without notice in a future release of PHP. Use this function at your own risk.

Return Values

This function returns TRUE if an exception has been caught, FALSE otherwise.

Examples

Example 2147. Sample IDL file

/* ++?????++ Out of Cheese Error. Redo From Start. */
exception OutOfCheeseError {
   int parameter;
}

interface AnotherInterface {
   void AskWhy() raises (OutOfCheeseError);
}


Example 2148. PHP code for handling CORBA exceptions

<?php
$obj
= new OrbitObject ($ior);

$obj->AskWhy();

if (
satellite_caught_exception()) {
   if (
"IDL:OutOfCheeseError:1.0" == satellite_exception_id()) {
       
$exception = satellite_exception_value();
       echo
$exception->parameter;
   }
}
?>