• This project
    • Loading...
  • Sign in

fe / YOHOBUYWAP · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYWAP
  • library
  • Plugin
  • Pay
  • weixin
  • lib
  • WxPayException.php
  • do format php code
    1d510a0a
    by hf
    2015-12-25 14:26:32 +0800  
    Browse Files
WxPayException.php 246 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<?php

namespace Plugin\Pay\weixin\lib;

use Exception;

/**
 * 
 * 微信支付API异常类
 * @author widyhu
 *
 */
class WxPayException extends Exception
{

    public function errorMessage()
    {
        return $this->getMessage();
    }

}