PaymentException.php 261 B

1234567891011121314151617
  1. <?php
  2. namespace JiaLeo\Payment\Common;
  3. class PaymentException extends \Exception
  4. {
  5. /**
  6. * 获取异常错误信息
  7. * @return string
  8. * @author helei
  9. */
  10. public function errorMessage()
  11. {
  12. return $this->getMessage();
  13. }
  14. }