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

17 lines
680 B
PHP
Raw Normal View History

<?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;
}
}
?>