summaryrefslogtreecommitdiff
path: root/ext/java/except.php
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2002-11-15 11:55:58 +0000
committerSVN Migration <svn@php.net>2002-11-15 11:55:58 +0000
commit5bc46bd808cdb47a06c9c9063d287f99201c0419 (patch)
treed95f02f9ec11e86e4da7bda4e41f2cd45a25ca6f /ext/java/except.php
parent66ec203e70cb4cee6cd91449ffb403731f3298e5 (diff)
downloadphp-git-BEFORE_RENAMING.tar.gz
This commit was manufactured by cvs2svn to create tag 'BEFORE_RENAMING'.BEFORE_RENAMING
Diffstat (limited to 'ext/java/except.php')
-rw-r--r--ext/java/except.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/java/except.php b/ext/java/except.php
deleted file mode 100644
index a7e6a79c08..0000000000
--- a/ext/java/except.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?
- $stack=new Java("java.util.Stack");
- $stack->push(1);
-
- #
- # Should succeed and print out "1"
- #
- $result = $stack->pop();
- $ex = java_last_exception_get();
- if (!$ex) print "$result\n";
-
- #
- # Should fail - note the "@" eliminates the warning
- #
- $result=@$stack->pop();
- $ex=java_last_exception_get();
- if ($ex) print $ex->toString();
-
- #
- # Reset last exception
- #
- java_last_exception_clear();
-?>