php-src/ext/reflection/tests/exception.inc

17 lines
681 B
PHP
Raw Normal View History

<?php
2004-09-29 08:55:45 +00:00
class ReflectionExceptionEx extends ReflectionException {
function MyException($_errno, $_errmsg) {
$this->errno = $_errno;
$this->errmsg = $_errmsg;
}
function getErrno() {
return $this->errno;
}
function getErrmsg() {
return $this->errmsg;
}
}
?>