TypeException.php 315 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 16/3/6
  6. * Time: 下午10:42
  7. */
  8. class TypeException extends Exception
  9. {
  10. public function __construct()
  11. {
  12. $code = errcode::ErrApptype;
  13. $message = errcode::msg($code);
  14. parent::__construct($message, $code, null);
  15. }
  16. }