php-src/ext/reflection/tests/exception.inc
2004-03-01 20:44:11 +00:00

17 lines
680 B
PHP

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