php-src/Zend/tests/exception_009.phpt

33 lines
674 B
Plaintext
Raw Normal View History

2008-08-14 19:14:56 +00:00
--TEST--
Testing exception properties
--FILE--
<?php
class my_file
{
public function __toString()
{
return "somebuildfilename" ;
}
}
class my_exception extends exception
{
public function __construct()
2008-08-14 19:17:59 +00:00
{
2008-08-14 19:14:56 +00:00
$this->message = new stdclass ;
2008-08-14 19:17:59 +00:00
$this->file = new my_file ;
2008-08-14 19:14:56 +00:00
$this->line = "12" ;
}
}
throw new my_exception;
?>
--EXPECT--
Fatal error: Uncaught Error: Object of class stdClass could not be converted to string in [no active file]:0
Stack trace:
#0 [internal function]: Exception->__toString()
#1 {main}
thrown in [no active file] on line 0