Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/06/2005, 16:08
dominguez
 
Fecha de Ingreso: julio-2003
Mensajes: 463
Antigüedad: 20 años, 9 meses
Puntos: 0
PHP no propaga excepciones

Hola,

en PHP las EXCEPCIONES no se pueden propagar verdad??

Por ejemplo:
try{
.....

}catch(MyException $e){
throw new MyException($e);
}

Gracias.