616db0091ebb1c5ceeccf105a8609dc1bfdddeb6
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Exception;
3 class PPTransformerException extends \Exception{
4
5         public function __construct($message = null, $code = 0) {
6                 parent::__construct($message, $code);
7         }
8
9         public function errorMessage()
10         {
11                 $errorMsg = 'Error on line '.$this->getLine().' in '.$this->getFile()
12                 .': <b>'.$this->getMessage().'</b>';
13
14                 return $errorMsg;
15         }
16
17 }