1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 08:33:06 +02:00
Files
archived-php-src/Zend
Andi Gutmans f1e8815c26 - Change exception handling to use the Java-like catch(MyException $exception)
- semantics. Example:
<?php

	class MyException {
		function __construct($exception)
		{
			$this->exception = $exception;
		}

		function Display()
		{
			print "MyException: $this->exception\n";
		}

	}
	class MyExceptionFoo extends MyException {
		function __construct($exception)
		{
			$this->exception = $exception;
		}
		function Display()
		{
			print "MyException: $this->exception\n";
		}
	}

	try {
		throw  new MyExceptionFoo("Hello");
	} catch (MyException $exception) {
		$exception->Display();
	}
?>
2002-01-13 20:21:55 +00:00
..
2001-03-11 19:35:26 +00:00
1999-10-04 15:20:12 +00:00
2001-09-22 00:09:24 +00:00
2001-12-11 17:38:49 +00:00
2001-09-19 10:41:35 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2001-12-31 07:50:42 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2001-08-31 21:47:26 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2001-09-10 00:08:24 +00:00
2002-01-13 17:51:18 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2001-01-12 11:14:46 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
2002-01-06 15:21:36 +00:00
1999-04-07 18:10:10 +00:00
2001-12-11 09:17:38 +00:00
2001-09-19 10:06:09 +00:00