WxPayException.php 264 B

12345678910111213141516
  1. <?php
  2. namespace app\common\services\wechat\lib;
  3. use app\common\exceptions\AppException;
  4. /**
  5. *
  6. * 微信支付API异常类
  7. * @author widyhu
  8. *
  9. */
  10. class WxPayException extends AppException {
  11. public function errorMessage()
  12. {
  13. return $this->getMessage();
  14. }
  15. }