f5569e4755
I think this dir shouldn't have anything non-necessary in the root.
18 linhas
284 B
PHP
18 linhas
284 B
PHP
<?php
|
|
|
|
// Wanring: line numbers are sensitive, do not change
|
|
|
|
class MyException extends Exception { }
|
|
|
|
function throw_exception() {
|
|
throw new Exception();
|
|
}
|
|
|
|
function throw_myexception() {
|
|
throw new MyException();
|
|
}
|
|
|
|
function error_undefined_class() {
|
|
$x = new NoSuchClass();
|
|
}
|