mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
17 lines
681 B
PHP
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;
|
|
}
|
|
}
|
|
?>
|