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: