exception.inc 681 B

12345678910111213141516
  1. <?php
  2. class ReflectionExceptionEx extends ReflectionException {
  3. function MyException($_errno, $_errmsg) {
  4. $this->errno = $_errno;
  5. $this->errmsg = $_errmsg;
  6. }
  7. function getErrno() {
  8. return $this->errno;
  9. }
  10. function getErrmsg() {
  11. return $this->errmsg;
  12. }
  13. }
  14. ?>