php-src/ext/reflection/tests/exception.inc
2004-09-29 08:55:45 +00:00

17 lines
681 B
PHP

<?php
class ReflectionExceptionEx extends ReflectionException {
function MyException($_errno, $_errmsg) {
$this->errno = $_errno;
$this->errmsg = $_errmsg;
}
function getErrno() {
return $this->errno;
}
function getErrmsg() {
return $this->errmsg;
}
}
?>