1--TEST-- 2Testing exception properties 3--FILE-- 4<?php 5 6class my_file 7{ 8 public function __toString() 9 { 10 return "somebuildfilename" ; 11 } 12} 13 14class my_exception extends exception 15{ 16 public function __construct() 17 { 18 $this->message = new stdclass ; 19 $this->file = new my_file ; 20 $this->line = "12" ; 21 } 22} 23 24throw new my_exception; 25 26?> 27--EXPECT-- 28Catchable fatal error: Object of class stdClass could not be converted to string in Unknown on line 0 29