mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
16 lines
369 B
PHP
16 lines
369 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;
|
|
}
|
|
}
|
|
?>
|