1: <?php
2: /**
3: * Created by PhpStorm.
4: * User: mcfedr
5: * Date: 11/02/2014
6: * Time: 15:19
7: */
8:
9: namespace mcfedr\Paypal\Exceptions;
10:
11:
12: class UnsupportedRefundException extends Exception {
13: public function __construct($type) {
14: parent::__construct("Cannot do a refund other than 'Full', attempted $type");
15: }
16: }