<?php
class foo {
  function __construct($n=0) {
    if($n) throw new Exception("new");
  }
}
$x = new foo();
try {
  $y=$x->__construct(1);
} catch (Exception $e) {
  var_dump($x);
}
?>