Overview

Namespaces

  • mcfedr
    • Paypal
      • Exceptions
      • Notifications
      • Products
  • PHP

Exceptions

  • ACKException
  • CurlException
  • Exception
  • MasspayException
  • NotificationBusinessInvalidException
  • NotificationCurrencyInvalidException
  • NotificationInvalidException
  • NotificationVerificationException
  • RefundException
  • UnsupportedRefundException
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace mcfedr\Paypal\Exceptions;
 4: 
 5: /**
 6:  * The person being paid is not the expected one
 7:  */
 8: class NotificationBusinessInvalidException extends NotificationInvalidException {
 9: 
10:     /**
11:      * 
12:      * @param \mcfedr\Paypal\Notifications\Notification $notification
13:      */
14:     public function __construct($notification) {
15:         $this->notification = $notification;
16:         parent::__construct("Invalid Business");
17:     }
18: 
19: }
20: 
Paypal API documentation generated by ApiGen 2.8.0